Mercurial > repos > yating-l > ucsc_blat
annotate test-data/all_fasta.loc @ 4:545bc7831814 draft
planemo upload commit 03d8ad323631c923ac8b95fd0efd2023ec5c204e
author | yating-l |
---|---|
date | Thu, 01 Jun 2017 16:31:08 -0400 |
parents | eb7fcec3fdba |
children | 2a89f630fa85 |
rev | line source |
---|---|
1
eb7fcec3fdba
planemo upload commit 78ad97a2be3ed2c75777ec97ef9489f819cbc471
yating-l
parents:
diff
changeset
|
1 #This is a sample file distributed with Galaxy that enables tools |
eb7fcec3fdba
planemo upload commit 78ad97a2be3ed2c75777ec97ef9489f819cbc471
yating-l
parents:
diff
changeset
|
2 #to use a directory of Samtools indexed sequences data files. You will need |
eb7fcec3fdba
planemo upload commit 78ad97a2be3ed2c75777ec97ef9489f819cbc471
yating-l
parents:
diff
changeset
|
3 #to create these data files and then create a fasta_indexes.loc file |
eb7fcec3fdba
planemo upload commit 78ad97a2be3ed2c75777ec97ef9489f819cbc471
yating-l
parents:
diff
changeset
|
4 #similar to this one (store it in this directory) that points to |
eb7fcec3fdba
planemo upload commit 78ad97a2be3ed2c75777ec97ef9489f819cbc471
yating-l
parents:
diff
changeset
|
5 #the directories in which those files are stored. The fasta_indexes.loc |
eb7fcec3fdba
planemo upload commit 78ad97a2be3ed2c75777ec97ef9489f819cbc471
yating-l
parents:
diff
changeset
|
6 #file has this format (white space characters are TAB characters): |
eb7fcec3fdba
planemo upload commit 78ad97a2be3ed2c75777ec97ef9489f819cbc471
yating-l
parents:
diff
changeset
|
7 # |
eb7fcec3fdba
planemo upload commit 78ad97a2be3ed2c75777ec97ef9489f819cbc471
yating-l
parents:
diff
changeset
|
8 # <unique_build_id> <dbkey> <display_name> <file_base_path> |
eb7fcec3fdba
planemo upload commit 78ad97a2be3ed2c75777ec97ef9489f819cbc471
yating-l
parents:
diff
changeset
|
9 # |
eb7fcec3fdba
planemo upload commit 78ad97a2be3ed2c75777ec97ef9489f819cbc471
yating-l
parents:
diff
changeset
|
10 #So, for example, if you had hg19 Canonical indexed stored in |
eb7fcec3fdba
planemo upload commit 78ad97a2be3ed2c75777ec97ef9489f819cbc471
yating-l
parents:
diff
changeset
|
11 # |
eb7fcec3fdba
planemo upload commit 78ad97a2be3ed2c75777ec97ef9489f819cbc471
yating-l
parents:
diff
changeset
|
12 # /depot/data2/galaxy/hg19/sam/, |
eb7fcec3fdba
planemo upload commit 78ad97a2be3ed2c75777ec97ef9489f819cbc471
yating-l
parents:
diff
changeset
|
13 # |
eb7fcec3fdba
planemo upload commit 78ad97a2be3ed2c75777ec97ef9489f819cbc471
yating-l
parents:
diff
changeset
|
14 #then the fasta_indexes.loc entry would look like this: |
eb7fcec3fdba
planemo upload commit 78ad97a2be3ed2c75777ec97ef9489f819cbc471
yating-l
parents:
diff
changeset
|
15 # |
eb7fcec3fdba
planemo upload commit 78ad97a2be3ed2c75777ec97ef9489f819cbc471
yating-l
parents:
diff
changeset
|
16 #hg19canon hg19 Human (Homo sapiens): hg19 Canonical /depot/data2/galaxy/hg19/sam/hg19canon.fa |
eb7fcec3fdba
planemo upload commit 78ad97a2be3ed2c75777ec97ef9489f819cbc471
yating-l
parents:
diff
changeset
|
17 # |
eb7fcec3fdba
planemo upload commit 78ad97a2be3ed2c75777ec97ef9489f819cbc471
yating-l
parents:
diff
changeset
|
18 #and your /depot/data2/galaxy/hg19/sam/ directory |
eb7fcec3fdba
planemo upload commit 78ad97a2be3ed2c75777ec97ef9489f819cbc471
yating-l
parents:
diff
changeset
|
19 #would contain hg19canon.fa and hg19canon.fa.fai files. |
eb7fcec3fdba
planemo upload commit 78ad97a2be3ed2c75777ec97ef9489f819cbc471
yating-l
parents:
diff
changeset
|
20 # |
eb7fcec3fdba
planemo upload commit 78ad97a2be3ed2c75777ec97ef9489f819cbc471
yating-l
parents:
diff
changeset
|
21 #Your fasta_indexes.loc file should include an entry per line for |
eb7fcec3fdba
planemo upload commit 78ad97a2be3ed2c75777ec97ef9489f819cbc471
yating-l
parents:
diff
changeset
|
22 #each index set you have stored. The file in the path does actually |
eb7fcec3fdba
planemo upload commit 78ad97a2be3ed2c75777ec97ef9489f819cbc471
yating-l
parents:
diff
changeset
|
23 #exist, but it should never be directly used. Instead, the name serves |
eb7fcec3fdba
planemo upload commit 78ad97a2be3ed2c75777ec97ef9489f819cbc471
yating-l
parents:
diff
changeset
|
24 #as a prefix for the index file. For example: |
eb7fcec3fdba
planemo upload commit 78ad97a2be3ed2c75777ec97ef9489f819cbc471
yating-l
parents:
diff
changeset
|
25 # |
eb7fcec3fdba
planemo upload commit 78ad97a2be3ed2c75777ec97ef9489f819cbc471
yating-l
parents:
diff
changeset
|
26 #hg18canon hg18 Human (Homo sapiens): hg18 Canonical /depot/data2/galaxy/hg18/sam/hg18canon.fa |
eb7fcec3fdba
planemo upload commit 78ad97a2be3ed2c75777ec97ef9489f819cbc471
yating-l
parents:
diff
changeset
|
27 #hg18full hg18 Human (Homo sapiens): hg18 Full /depot/data2/galaxy/hg18/sam/hg18full.fa |
eb7fcec3fdba
planemo upload commit 78ad97a2be3ed2c75777ec97ef9489f819cbc471
yating-l
parents:
diff
changeset
|
28 #hg19canon hg19 Human (Homo sapiens): hg19 Canonical /depot/data2/galaxy/hg19/sam/hg19canon.fa |
eb7fcec3fdba
planemo upload commit 78ad97a2be3ed2c75777ec97ef9489f819cbc471
yating-l
parents:
diff
changeset
|
29 #hg19full hg19 Human (Homo sapiens): hg19 Full /depot/data2/galaxy/hg19/sam/hg19full.fa |
eb7fcec3fdba
planemo upload commit 78ad97a2be3ed2c75777ec97ef9489f819cbc471
yating-l
parents:
diff
changeset
|
30 dbia3 dm3 Dbia3 /home/galaxy/galaxy/tool-data/dm3/seq/dbia3.fa |