Skip to content

Commit e706baa

Browse files
committed
Readme edits
1 parent a6a1e21 commit e706baa

File tree

1 file changed

+39
-16
lines changed

1 file changed

+39
-16
lines changed

README.md

Lines changed: 39 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -176,29 +176,52 @@ conda activate Tiger
176176
```bash
177177
cd <path to out directory containing singular .fa file> ; islander.pl -verbose <fasta file name>
178178
```
179-
<sub> Note: if you made the <path to TIGER>/bin a system-wide executable by enabling execute with chmod and adding the path to your bash profile, you will not need to specify perl (perl <path to TIGER>/bin/islander.pl) or use the path to the script in your launch command. If not, you will need to call the program as: ''cd <path to out directory containing singular .fa file> ; perl <path to TIGER>/bin/islander.pl -verbose <fasta file name>''<sub>
179+
<sub> Note: if you made the "path to TIGER"/bin a system-wide executable by enabling execute with chmod and adding the path to your bash profile, you will not need to specify perl (perl "path to TIGER"/bin/islander.pl) or use the path to the script in your launch command. If not, you will need to call the program as: cd "path to out directory containing singular .fa file" ; perl "path to TIGER"/bin/islander.pl -verbose <fasta file name><sub>
180180

181-
### TIGER Requirements:
182-
(see https://github.com/sandialabs/SmartDBs for instructions on generating this database. Alternatively, if you only need a database for a single species you can reach out to Kelly Williams (kpwilli at sandia.gov) or Katie Mageeney (cmmagee at sandia.gov) for assisance)
183-
184-
185-
186-
## Sample calls to try within /testdata (PATH: to TIGER installation; DB: to reference genome blast database)
181+
To rerun this program: delete genome.stats
187182

188-
```perl PATH/bin/islander.pl -verbose genome.fa &> islander.log```
189-
190-
```perl PATH/bin/tiger.pl -verbose -db DB -cross simple -fasta genome.fa &> tiger.log```
183+
### TIGER Requirements:
184+
TIGER requires a singular genomic or metagenomic file in fasta format ('.fa' subscript) in an output directory and a BLAST database of species specific reference genomes. See https://github.com/sandialabs/SmartDBs for instructions on generating this database. Alternatively, if you only need a BLAST database for a single/few species you can reach out to Kelly Williams (kpwilli at sandia dot gov) or Katie Mageeney (cmmagee at sandia dot gov) for assisance. Please provide the GTDB taxonomic name for your species as well as the link to either a DropBox or GoogleDrive Folder for the database to be deposited in.
191185

192-
```perl PATH/bin/resolve.pl mixed lenient genome genome.island.merge.gff islander.gff &> resolve.log```
186+
***
187+
*TIGER Flags:*
188+
Usage: perl tiger.pl [options] -db <RefDatabase> -fasta <GenomicDNA>
189+
- '-fasta': Genomic fasta DNA sequence file.
190+
- '-db': Blast database of reference genomes, absolute path.
191+
- '-search': Search type. Specify island or IS. Default: island.
192+
- '-tax': Taxonomic info for query genome. Enter name of a file containing
193+
NCBI taxonomy string, or use B for Bacteria, A for Archaea, M for
194+
Mycoplasmatales/Entomoplasmatales, G for Gracilibacteria/candidate
195+
division SR1. Automatically sets -gencode. Default: B.
196+
- '-gencode': Genetic code table to use (see NCBI). Default: 11.
197+
- '-nickname': Brief name for genome (as might be used to start a locus_tag).
198+
- '-circle': Specify C if all genomic DNA sequences are circular, L if all DNAs
199+
are linear, or a filename for a tab-delimited file of query and
200+
circularity (eg. acc.vers[tab]circular/linear). Default: C.
201+
- '-cross': Three options: intact, cross, or circleOrigin. Default: intact.
202+
- '-complete': Consider genome complete and categorize replicons. Default:
203+
consider genome incomplete and call all entries contigs.
204+
- '-qlen': Query length for islands. Default: 15000 (3000 is always used
205+
in the second pass test for IS's that rule out island artifacts).
206+
- '-force': Overwrite current output files. Default: leave existing files.
207+
- '-outDir': Output directory. Default: same directory as GENOME_FASTA_FILE.
208+
- '-cpu': Number of cpus to use. Default: 1.
209+
- Additional options: '-help', '-version', '-verbose', '-authors', '-license'
210+
***
193211

194-
```perl PATH/bin/typing.pl resolved.gff &> typing.log```
212+
Executing TIGER Example:
195213

196-
```perl PATH/bin/typing.pl genome.island.nonoverlap.gff &> typing.log```
214+
From your Conda Environment:
215+
```bash
216+
conda activate Tiger
217+
```
197218

198-
## Notes:
199-
before rerunning islander.pl: ```rm genome.stats```
219+
```bash
220+
cd <path to out directory containing singular .fa file> ; tiger.pl -verbose -db <path to reference genome database and database prefix> -fasta <fasta file name>
221+
```
222+
<sub> Note: if you made the "path to TIGER"/bin a system-wide executable by enabling execute with chmod and adding the path to your bash profile, you will not need to specify perl (perl "path to TIGER"/bin/tiger.pl) or use the path to the script in your launch command. If not, you will need to call the program as: cd "path to out directory containing singular .fa file" ; perl "path to TIGER"/bin/tiger.pl -verbose -db "path to reference genome database and database prefix" -fasta "fasta file name".
200223

201-
before rerunning tiger.pl: ```rm genome.island.nonoverlap.gff```
224+
To rerun this program, delete 'genome.island.nonoverlap.gff'
202225

203226
## Contact
204227
While we're working on a more complete usage guide, please reach out to eltorra@sandia.gov for help if this software is necessary for your research

0 commit comments

Comments
 (0)