Mercurial > repos > matt-shirley > ncbi_sra_toolkit
annotate sra_pileup.xml @ 29:ce2bb7841f17 default tip
Fix for https://github.com/mdshw5/sra-tools-galaxy/issues/1
author | Matt Shirley <mdshw5@gmail.com> |
---|---|
date | Tue, 07 Apr 2015 09:09:23 -0400 |
parents | fdc981664a43 |
children |
rev | line source |
---|---|
2 | 1 <tool id="sra_pileup" name="Generate pileup format" version="1.1.1"> |
2 <description> from NCBI sra.</description> | |
25
393a04ec0fa9
Update tool requirement versions.
Matt Shirley <mdshw5@gmail.com>
parents:
2
diff
changeset
|
3 <command>sra-pileup --log-level fatal |
2 | 4 #if str( $region ) != "": |
5 --aligned-region $region | |
6 #end if | |
7 #if str( $minMapq ) != "": | |
8 --minmapq $minMapq | |
9 #end if | |
10 #if $input.input_select == "file": | |
11 $input.file | |
12 #elif $input.input_select == "accession_number": | |
25
393a04ec0fa9
Update tool requirement versions.
Matt Shirley <mdshw5@gmail.com>
parents:
2
diff
changeset
|
13 $input.accession |
2 | 14 #elif $input.input_select == "text": |
15 `cat $input.text` | |
16 #end if | |
17 > $output</command> | |
18 <version_string>sra-pileup --version</version_string> | |
19 <inputs> | |
20 <conditional name="input"> | |
21 <param name="input_select" type="select" label="select input type"> | |
22 <option value="accession_number">SRR accession</option> | |
23 <option value="file">SRA archive in current history</option> | |
24 <option value="text">text file containing SRR accession</option> | |
25 </param> | |
26 <when value="file"> | |
27 <param format="sra" name="file" type="data" label="sra archive"/> | |
28 </when> | |
29 <when value="accession_number"> | |
30 <param format="text" name="accession" type="text" label="accession"/> | |
31 </when> | |
32 <when value="text"> | |
33 <param format="txt" name="text" type="data" label="text file"/> | |
34 </when> | |
35 </conditional> | |
36 <param format="text" name="region" type="text" label="aligned region"/> | |
37 <param format="text" name="minMapq" type="text" label="minimum mapping quality"/> | |
38 </inputs> | |
39 <outputs> | |
40 <data format="pileup" name="output"/> | |
41 </outputs> | |
42 <requirements> | |
25
393a04ec0fa9
Update tool requirement versions.
Matt Shirley <mdshw5@gmail.com>
parents:
2
diff
changeset
|
43 <requirement type="package" version="2.4.5">sra_toolkit</requirement> |
2 | 44 </requirements> |
28
fdc981664a43
Update to most recent GitHub version passing tests.
Matt Shirley <mdshw5@gmail.com>
parents:
25
diff
changeset
|
45 <tests> |
fdc981664a43
Update to most recent GitHub version passing tests.
Matt Shirley <mdshw5@gmail.com>
parents:
25
diff
changeset
|
46 <test> |
fdc981664a43
Update to most recent GitHub version passing tests.
Matt Shirley <mdshw5@gmail.com>
parents:
25
diff
changeset
|
47 <param name="input_select" value="accession_number"/> |
fdc981664a43
Update to most recent GitHub version passing tests.
Matt Shirley <mdshw5@gmail.com>
parents:
25
diff
changeset
|
48 <param name="accession" value="SRR925743"/> |
fdc981664a43
Update to most recent GitHub version passing tests.
Matt Shirley <mdshw5@gmail.com>
parents:
25
diff
changeset
|
49 <param name="region" value="17:41243452-41277500"/> |
fdc981664a43
Update to most recent GitHub version passing tests.
Matt Shirley <mdshw5@gmail.com>
parents:
25
diff
changeset
|
50 <output name="output" file="sra_pileup_result.pileup" ftype="pileup" /> |
fdc981664a43
Update to most recent GitHub version passing tests.
Matt Shirley <mdshw5@gmail.com>
parents:
25
diff
changeset
|
51 </test> |
fdc981664a43
Update to most recent GitHub version passing tests.
Matt Shirley <mdshw5@gmail.com>
parents:
25
diff
changeset
|
52 </tests> |
2 | 53 <help> |
28
fdc981664a43
Update to most recent GitHub version passing tests.
Matt Shirley <mdshw5@gmail.com>
parents:
25
diff
changeset
|
54 This tool extracts reads from sra archives using sam-dump. |
fdc981664a43
Update to most recent GitHub version passing tests.
Matt Shirley <mdshw5@gmail.com>
parents:
25
diff
changeset
|
55 Browse the NCBI SRA for SRR accessions at http://www.ncbi.nlm.nih.gov/Traces/sra/sra.cgi?view=studies. |
fdc981664a43
Update to most recent GitHub version passing tests.
Matt Shirley <mdshw5@gmail.com>
parents:
25
diff
changeset
|
56 The sam-dump program is developed at NCBI, and is available at: http://github.com/ncbi/sra-tools |
fdc981664a43
Update to most recent GitHub version passing tests.
Matt Shirley <mdshw5@gmail.com>
parents:
25
diff
changeset
|
57 Please submit inquiries and bug reports to http://github.com/mdshw5/sra-tools-galaxy. |
2 | 58 </help> |
59 </tool> |