| 
55
 | 
     1 #This is a sample file distributed with Galaxy that enables tools
 | 
| 
 | 
     2 #to use a directory with indexed fasta files. The all_fasta.loc file has 
 | 
| 
 | 
     3 #this format (longer white space characters are TAB characters):
 | 
| 
 | 
     4 #
 | 
| 
 | 
     5 #<unique_build_id>   <dbkey>   <display_name>   <file_path>
 | 
| 
 | 
     6 #
 | 
| 
 | 
     7 #So, for example, if you had phiX indexed stored in 
 | 
| 
 | 
     8 #/example/path/
 | 
| 
 | 
     9 #then the all_fasta.loc entry would look like this:
 | 
| 
 | 
    10 #
 | 
| 
 | 
    11 #phiX174   phiX   phiX Pretty   /example/path/phiX.fa
 | 
| 
 | 
    12 #
 | 
| 
 | 
    13 #and your /example/path/ directory
 | 
| 
 | 
    14 #would contain phiX.fa.* files:
 | 
| 
 | 
    15 #
 | 
| 
 | 
    16 # phiX.fa.fai
 | 
| 
 | 
    17 # phiX.fa.dict
 | 
| 
 | 
    18 #
 | 
| 
 | 
    19 #Your all_fasta.loc file should include an entry per line for each
 | 
| 
 | 
    20 #index set you have stored. For example:
 | 
| 
 | 
    21 #
 | 
| 
 | 
    22 #phiX174	phiX	phiX174			/path/to/phiX.fa
 | 
| 
 | 
    23 #hg18		hg18	hg18 Full		/path/to/hg18full.fa
 | 
| 
 | 
    24 #hg19		hg19	hg19			/path/to/hg19.fa
 | 
| 
 | 
    25 #...etc...
 | 
| 
 | 
    26 #
 |