Mercurial > repos > blankenberg > naive_variant_caller
annotate tool-data/sam_fa_indices.loc.sample @ 17:6be51647d31a draft default tip
"planemo upload for repository https://github.com/BlankenbergLab/galaxy-tools-blankenberg/tree/master/tools/naive_variant_caller commit 3e2fca43a0b119b34befa5d7642a07682d1d77af"
author | blankenberg |
---|---|
date | Thu, 05 Dec 2019 12:23:12 -0500 |
parents | ae6edc0012ba |
children |
rev | line source |
---|---|
1
ae6edc0012ba
Populate naive_variant_caller repository.
Daniel Blankenberg <dan@bx.psu.edu>
parents:
diff
changeset
|
1 #This is a sample file distributed with Galaxy that enables tools |
ae6edc0012ba
Populate naive_variant_caller repository.
Daniel Blankenberg <dan@bx.psu.edu>
parents:
diff
changeset
|
2 #to use a directory of Samtools indexed sequences data files. You will need |
ae6edc0012ba
Populate naive_variant_caller repository.
Daniel Blankenberg <dan@bx.psu.edu>
parents:
diff
changeset
|
3 #to create these data files and then create a sam_fa_indices.loc file |
ae6edc0012ba
Populate naive_variant_caller repository.
Daniel Blankenberg <dan@bx.psu.edu>
parents:
diff
changeset
|
4 #similar to this one (store it in this directory) that points to |
ae6edc0012ba
Populate naive_variant_caller repository.
Daniel Blankenberg <dan@bx.psu.edu>
parents:
diff
changeset
|
5 #the directories in which those files are stored. The sam_fa_indices.loc |
ae6edc0012ba
Populate naive_variant_caller repository.
Daniel Blankenberg <dan@bx.psu.edu>
parents:
diff
changeset
|
6 #file has this format (white space characters are TAB characters): |
ae6edc0012ba
Populate naive_variant_caller repository.
Daniel Blankenberg <dan@bx.psu.edu>
parents:
diff
changeset
|
7 # |
ae6edc0012ba
Populate naive_variant_caller repository.
Daniel Blankenberg <dan@bx.psu.edu>
parents:
diff
changeset
|
8 #index <seq> <location> |
ae6edc0012ba
Populate naive_variant_caller repository.
Daniel Blankenberg <dan@bx.psu.edu>
parents:
diff
changeset
|
9 # |
ae6edc0012ba
Populate naive_variant_caller repository.
Daniel Blankenberg <dan@bx.psu.edu>
parents:
diff
changeset
|
10 #So, for example, if you had hg18 indexed stored in |
ae6edc0012ba
Populate naive_variant_caller repository.
Daniel Blankenberg <dan@bx.psu.edu>
parents:
diff
changeset
|
11 #/depot/data2/galaxy/sam/, |
ae6edc0012ba
Populate naive_variant_caller repository.
Daniel Blankenberg <dan@bx.psu.edu>
parents:
diff
changeset
|
12 #then the sam_fa_indices.loc entry would look like this: |
ae6edc0012ba
Populate naive_variant_caller repository.
Daniel Blankenberg <dan@bx.psu.edu>
parents:
diff
changeset
|
13 # |
ae6edc0012ba
Populate naive_variant_caller repository.
Daniel Blankenberg <dan@bx.psu.edu>
parents:
diff
changeset
|
14 #index hg18 /depot/data2/galaxy/sam/hg18.fa |
ae6edc0012ba
Populate naive_variant_caller repository.
Daniel Blankenberg <dan@bx.psu.edu>
parents:
diff
changeset
|
15 # |
ae6edc0012ba
Populate naive_variant_caller repository.
Daniel Blankenberg <dan@bx.psu.edu>
parents:
diff
changeset
|
16 #and your /depot/data2/galaxy/sam/ directory |
ae6edc0012ba
Populate naive_variant_caller repository.
Daniel Blankenberg <dan@bx.psu.edu>
parents:
diff
changeset
|
17 #would contain hg18.fa and hg18.fa.fai files: |
ae6edc0012ba
Populate naive_variant_caller repository.
Daniel Blankenberg <dan@bx.psu.edu>
parents:
diff
changeset
|
18 # |
ae6edc0012ba
Populate naive_variant_caller repository.
Daniel Blankenberg <dan@bx.psu.edu>
parents:
diff
changeset
|
19 #-rw-r--r-- 1 james universe 830134 2005-09-13 10:12 hg18.fa |
ae6edc0012ba
Populate naive_variant_caller repository.
Daniel Blankenberg <dan@bx.psu.edu>
parents:
diff
changeset
|
20 #-rw-r--r-- 1 james universe 527388 2005-09-13 10:12 hg18.fa.fai |
ae6edc0012ba
Populate naive_variant_caller repository.
Daniel Blankenberg <dan@bx.psu.edu>
parents:
diff
changeset
|
21 # |
ae6edc0012ba
Populate naive_variant_caller repository.
Daniel Blankenberg <dan@bx.psu.edu>
parents:
diff
changeset
|
22 #Your sam_fa_indices.loc file should include an entry per line for |
ae6edc0012ba
Populate naive_variant_caller repository.
Daniel Blankenberg <dan@bx.psu.edu>
parents:
diff
changeset
|
23 #each index set you have stored. The file in the path does actually |
ae6edc0012ba
Populate naive_variant_caller repository.
Daniel Blankenberg <dan@bx.psu.edu>
parents:
diff
changeset
|
24 #exist, but it should never be directly used. Instead, the name serves |
ae6edc0012ba
Populate naive_variant_caller repository.
Daniel Blankenberg <dan@bx.psu.edu>
parents:
diff
changeset
|
25 #as a prefix for the index file. For example: |
ae6edc0012ba
Populate naive_variant_caller repository.
Daniel Blankenberg <dan@bx.psu.edu>
parents:
diff
changeset
|
26 # |
ae6edc0012ba
Populate naive_variant_caller repository.
Daniel Blankenberg <dan@bx.psu.edu>
parents:
diff
changeset
|
27 #index hg18 /depot/data2/galaxy/sam/hg18.fa |
ae6edc0012ba
Populate naive_variant_caller repository.
Daniel Blankenberg <dan@bx.psu.edu>
parents:
diff
changeset
|
28 #index hg19 /depot/data2/galaxy/sam/hg19.fa |