annotate sam_dump.xml @ 38:a0925f507352 draft

bring pileup to parity with sam; fixed minMapq for sam
author Matt Shirley <mdshw5@gmail.com>
date Sun, 04 Aug 2013 23:17:53 -0400
parents 4da2d7f0128e
children 1d152e8cb375
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
38
a0925f507352 bring pileup to parity with sam; fixed minMapq for sam
Matt Shirley <mdshw5@gmail.com>
parents: 37
diff changeset
1 <tool id="sam_dump" name="Extract reads" version="1.1.1">
37
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
2 <description> in SAM format from NCBI SRA.</description>
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
3 <command>
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
4 sam-dump --log-level fatal
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
5 #if str( $region ) != "":
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
6 --aligned-region $region
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
7 #end if
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
8 #if str( $matepairDist ) != "":
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
9 --matepair-distance $matepairDist
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
10 #end if
38
a0925f507352 bring pileup to parity with sam; fixed minMapq for sam
Matt Shirley <mdshw5@gmail.com>
parents: 37
diff changeset
11 #if str( $minMapq ) != "":
a0925f507352 bring pileup to parity with sam; fixed minMapq for sam
Matt Shirley <mdshw5@gmail.com>
parents: 37
diff changeset
12 --minmapq $minMapq
a0925f507352 bring pileup to parity with sam; fixed minMapq for sam
Matt Shirley <mdshw5@gmail.com>
parents: 37
diff changeset
13 #end if
37
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
14 #if $header == "yes":
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
15 --header
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
16 #else:
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
17 --no-header
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
18 #end if
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
19 #if str( $alignments ) == "both":
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
20 --unaligned
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
21 #end if
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
22 #if str( $alignments ) == "unaligned":
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
23 --unaligned-spots-only
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
24 #end if
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
25 #if (str( $primary ) == "yes") and (str ( $alignments != "unaligned") ):
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
26 --primary
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
27 #end if
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
28 #if $input.input_select == "file":
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
29 $input.file
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
30 #else:
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
31 $input.accession
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
32 #end if
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
33 > $output
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
34 </command>
0
ffdd41766195 Initial version - still need to test if datatype works correctly, and implement scripted download of SRA binaries.
matt-shirley <mdshw5@gmail.com>
parents:
diff changeset
35 <version_string>sam-dump --version</version_string>
ffdd41766195 Initial version - still need to test if datatype works correctly, and implement scripted download of SRA binaries.
matt-shirley <mdshw5@gmail.com>
parents:
diff changeset
36 <inputs>
37
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
37 <conditional name="input">
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
38 <param name="input_select" type="select" label="select input type">
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
39 <option value="accession_number">SRR accession</option>
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
40 <option value="file">SRA archive in current history</option>
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
41 </param>
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
42 <when value="file">
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
43 <param format="sra" name="file" type="data" label="sra archive"/>
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
44 </when>
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
45 <when value="accession_number">
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
46 <param format="text" name="accession" type="text" label="accession"/>
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
47 </when>
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
48 </conditional>
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
49 <param format="text" name="region" type="text" label="aligned region"/>
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
50 <param format="text" name="matepairDist" type="text" label="mate-pair distance (from-to|unknown)"/>
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
51 <param format="text" name="header" type="select" value="yes">
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
52 <label>output SAM header</label>
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
53 <option value="yes">Yes</option>
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
54 <option value="no">No</option>
0
ffdd41766195 Initial version - still need to test if datatype works correctly, and implement scripted download of SRA binaries.
matt-shirley <mdshw5@gmail.com>
parents:
diff changeset
55 </param>
37
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
56 <param format="text" name="alignments" type="select" value="both">
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
57 <label>aligned or unaligned reads</label>
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
58 <option value="both">both</option>
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
59 <option value="aligned">aligned only</option>
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
60 <option value="unaligned">unaligned only</option>
0
ffdd41766195 Initial version - still need to test if datatype works correctly, and implement scripted download of SRA binaries.
matt-shirley <mdshw5@gmail.com>
parents:
diff changeset
61 </param>
37
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
62 <param format="text" name="primary" type="select" value="no">
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
63 <label>only primary aligments</label>
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
64 <option value="no">No</option>
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
65 <option value="yes">Yes</option>
0
ffdd41766195 Initial version - still need to test if datatype works correctly, and implement scripted download of SRA binaries.
matt-shirley <mdshw5@gmail.com>
parents:
diff changeset
66 </param>
37
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
67 <param format="text" name="minMapq" type="text" label="minimum mapping quality"/>
0
ffdd41766195 Initial version - still need to test if datatype works correctly, and implement scripted download of SRA binaries.
matt-shirley <mdshw5@gmail.com>
parents:
diff changeset
68 </inputs>
ffdd41766195 Initial version - still need to test if datatype works correctly, and implement scripted download of SRA binaries.
matt-shirley <mdshw5@gmail.com>
parents:
diff changeset
69 <outputs>
ffdd41766195 Initial version - still need to test if datatype works correctly, and implement scripted download of SRA binaries.
matt-shirley <mdshw5@gmail.com>
parents:
diff changeset
70 <data format="sam" name="output"/>
ffdd41766195 Initial version - still need to test if datatype works correctly, and implement scripted download of SRA binaries.
matt-shirley <mdshw5@gmail.com>
parents:
diff changeset
71 </outputs>
ffdd41766195 Initial version - still need to test if datatype works correctly, and implement scripted download of SRA binaries.
matt-shirley <mdshw5@gmail.com>
parents:
diff changeset
72 <requirements>
11
cdba74ec9eca updated sra_toolkit dependency in <requirements>
Matt Shirley <mdshw5@gmail.com>
parents: 0
diff changeset
73 <requirement type="package" version="2.3.2-4">sra_toolkit</requirement>
0
ffdd41766195 Initial version - still need to test if datatype works correctly, and implement scripted download of SRA binaries.
matt-shirley <mdshw5@gmail.com>
parents:
diff changeset
74 </requirements>
ffdd41766195 Initial version - still need to test if datatype works correctly, and implement scripted download of SRA binaries.
matt-shirley <mdshw5@gmail.com>
parents:
diff changeset
75 <help>
37
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
76 This tool extracts reads from sra archives using sam-dump.
21
d850324e82cf fix datatype reference, increment versions
Matt Shirley <mdshw5@gmail.com>
parents: 13
diff changeset
77 The sam-dump program is developed at NCBI, and is available at: http://www.ncbi.nlm.nih.gov/Traces/sra/sra.cgi?view=software.
d850324e82cf fix datatype reference, increment versions
Matt Shirley <mdshw5@gmail.com>
parents: 13
diff changeset
78 Contact Matt Shirley at mdshw5@gmail.com for support and bug reports.
0
ffdd41766195 Initial version - still need to test if datatype works correctly, and implement scripted download of SRA binaries.
matt-shirley <mdshw5@gmail.com>
parents:
diff changeset
79 </help>
37
4da2d7f0128e Exposed more options for fastq_dump and sam_dump
Matt Shirley <mdshw5@gmail.com>
parents: 22
diff changeset
80 </tool>