1 | #This is a sample file distributed with Galaxy that enables tools |
---|
2 | #to use a directory of BFAST indexed sequences data files. You will need |
---|
3 | #to create these data files and then create a bfast_indices.loc file |
---|
4 | #similar to this one (store it in this directory) that points to |
---|
5 | #the directories in which those files are stored. The bfast_indexes.loc |
---|
6 | #file has this format (white space characters are TAB characters): |
---|
7 | # |
---|
8 | #<unique_id> <build> <galaxy format extensions valid1,valid2> <description> <bfast_index_directory> |
---|
9 | # |
---|
10 | # |
---|
11 | #So, for example, if you had hg18 indexed for 40+ bp NT reads stored in |
---|
12 | #/galaxy/data/hg18/bfast_index/nt/40+, |
---|
13 | #then the bfast_indices.loc entry could look like this: |
---|
14 | # |
---|
15 | #hg18_nt_40+ hg18 fastqsanger hg18: 40+ bp NT Space reads /galaxy/data/hg18/bfast_index/nt/40+/hg18.fa |
---|
16 | # |
---|
17 | #and your /depot/data2/galaxy/hg18/bfast/nt/40+ directory |
---|
18 | #would contain hg18.fa.*.brg and hg18.fa.*.bif files: |
---|
19 | #hg18.fa.nt.brg |
---|
20 | #hg18.fa.nt.1.1.bif |
---|
21 | #hg18.fa.nt.2.1.bif |
---|
22 | #...etc... |
---|
23 | #or similarly for color space indexes: |
---|
24 | #hg18.fa.nt.brg #NB: the localalign process requires the nucleotide brg file |
---|
25 | #hg18.fa.cs.brg |
---|
26 | #hg18.fa.cs.1.1.bif |
---|
27 | #hg18.fa.cs.2.1.bif |
---|
28 | #...etc... |
---|
29 | # |
---|
30 | #a 'generic' directory can be used to hold intermixed NT and CS indexes, when differentiating is not needed, the bfast_indices.loc entry could look like this: |
---|
31 | #hg18_standard hg18 fastqsanger,fastqcssanger hg18 standard indexes /galaxy/data/hg18/bfast_index/hg18.fa |
---|
32 | # |
---|
33 | #The use of symlinks to prevent copying of e.g. .fa and .brg files is recommended |
---|
34 | # |
---|
35 | #hg18_nt_40+ hg18 fastqsanger hg18: 40+ bp NT Space reads /galaxy/data/hg18/bfast_index/nt/40+/hg18.fa |
---|
36 | #hg18_cs_50+ hg18 fastqcssanger hg18: 50+ bp Color space reads /galaxy/data/hg18/bfast_index/cs/50+/hg18.fa |
---|
37 | #hg18_nt_40- hg18 fastqsanger hg18: 40- bp NT Space reads /galaxy/data/hg18/bfast_index/nt/40-/hg18.fa |
---|
38 | #phiX_nt_50 phiX fastqsanger phiX: 50 bp NT Space reads /galaxy/data/phiX/bfast_index/nt/50/phiX.fa |
---|