annotate tools/metag_tools/shrimp_wrapper.xml @ 1:cdcb0ce84a1b

Uploaded
author xuebing
date Fri, 09 Mar 2012 19:45:15 -0500
parents 9071e359b9a3
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
1 <tool id="shrimp_wrapper" name="SHRiMP for Letter-space" version="1.0.0">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
2 <description>reads mapping against reference sequence </description>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
3 <command interpreter="python">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
4 #if ($type_of_reads.single_or_paired=="single" and $param.skip_or_full=="skip") #shrimp_wrapper.py $input_target $output1 $output2 $input_query
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
5 #elif ($type_of_reads.single_or_paired=="paired" and $param.skip_or_full=="skip") #shrimp_wrapper.py $input_target $output1 $output2 $type_of_reads.input1,$type_of_reads.input2,$type_of_reads.insertion_size
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
6 #elif ($type_of_reads.single_or_paired=="single" and $param.skip_or_full=="full") #shrimp_wrapper.py $input_target $output1 $output2 $input_query $param.spaced_seed $param.seed_matches_per_window $param.seed_hit_taboo_length $param.seed_generation_taboo_length $param.seed_window_length $param.max_hits_per_read $param.max_read_length $param.kmer $param.sw_match_value $param.sw_mismatch_value $param.sw_gap_open_ref $param.sw_gap_open_query $param.sw_gap_ext_ref $param.sw_gap_ext_query $param.sw_hit_threshold
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
7 #elif ($type_of_reads.single_or_paired=="paired" and $param.skip_or_full=="full") #shrimp_wrapper.py $input_target $output1 $output2 $type_of_reads.input1,$type_of_reads.input2,$type_of_reads.insertion_size $param.spaced_seed $param.seed_matches_per_window $param.seed_hit_taboo_length $param.seed_generation_taboo_length $param.seed_window_length $param.max_hits_per_read $param.max_read_length $param.kmer $param.sw_match_value $param.sw_mismatch_value $param.sw_gap_open_ref $param.sw_gap_open_query $param.sw_gap_ext_ref $param.sw_gap_ext_query $param.sw_hit_threshold
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
8 #end if#
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
9 </command>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
10 <inputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
11 <page>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
12 <conditional name="type_of_reads">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
13 <param name="single_or_paired" type="select" label="Single- or Paired-ends">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
14 <option value="single">Single-end</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
15 <option value="paired">Paired-end</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
16 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
17 <when value="single">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
18 <param name="input_query" type="data" format="fastqsolexa" label="Align sequencing reads" help="No dataset? Read tip below"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
19 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
20 <when value="paired">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
21 <param name="insertion_size" type="integer" size="5" value="600" label="Insertion length between two ends" help="bp" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
22 <param name="input1" type="data" format="fastqsolexa" label="Align sequencing reads, one end" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
23 <param name="input2" type="data" format="fastqsolexa" label="and the other end" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
24 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
25 </conditional>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
26 <param name="input_target" type="data" format="fasta" label="against reference" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
27 <conditional name="param">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
28 <param name="skip_or_full" type="select" label="SHRiMP settings to use" help="For most mapping needs use Commonly used settings. If you want full control use Full List">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
29 <option value="skip">Commonly used</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
30 <option value="full">Full Parameter List</option>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
31 </param>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
32 <when value="skip" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
33 <when value="full">
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
34 <param name="spaced_seed" type="text" size="30" value="111111011111" label="Spaced Seed" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
35 <param name="seed_matches_per_window" type="integer" size="5" value="2" label="Seed Matches per Window" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
36 <param name="seed_hit_taboo_length" type="integer" size="5" value="4" label="Seed Hit Taboo Length" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
37 <param name="seed_generation_taboo_length" type="integer" size="5" value="0" label="Seed Generation Taboo Length" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
38 <param name="seed_window_length" type="float" size="10" value="115.0" label="Seed Window Length" help="in percentage"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
39 <param name="max_hits_per_read" type="integer" size="10" value="100" label="Maximum Hits per Read" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
40 <param name="max_read_length" type="integer" size="10" value="1000" label="Maximum Read Length" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
41 <param name="kmer" type="integer" size="10" value="-1" label="Kmer Std. Deviation Limit" help="-1 as None"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
42 <param name="sw_match_value" type="integer" size="10" value="100" label="S-W Match Value" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
43 <param name="sw_mismatch_value" type="integer" size="10" value="-150" label="S-W Mismatch Value" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
44 <param name="sw_gap_open_ref" type="integer" size="10" value="-400" label="S-W Gap Open Penalty (Reference)" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
45 <param name="sw_gap_open_query" type="integer" size="10" value="-400" label="S-W Gap Open Penalty (Query)" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
46 <param name="sw_gap_ext_ref" type="integer" size="10" value="-70" label="S-W Gap Extend Penalty (Reference)" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
47 <param name="sw_gap_ext_query" type="integer" size="10" value="-70" label="S-W Gap Extend Penalty (Query)" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
48 <param name="sw_hit_threshold" type="float" size="10" value="68.0" label="S-W Hit Threshold" help="in percentage"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
49 </when>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
50 </conditional>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
51 </page>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
52 </inputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
53 <outputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
54 <data name="output1" format="tabular"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
55 <data name="output2" format="tabular"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
56 </outputs>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
57 <requirements>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
58 <requirement type="binary">rmapper-ls</requirement>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
59 </requirements>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
60 <tests>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
61 <test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
62 <param name="single_or_paired" value="single" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
63 <param name="skip_or_full" value="skip" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
64 <param name="input_target" value="shrimp_phix_anc.fa" ftype="fasta" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
65 <param name="input_query" value="shrimp_wrapper_test1.fastq" ftype="fastqsolexa"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
66 <output name="output1" file="shrimp_wrapper_test1.out1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
67 </test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
68 <!--
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
69 <test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
70 <param name="single_or_paired" value="paired" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
71 <param name="skip_or_full" value="skip" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
72 <param name="input_target" value="shrimp_eca_chrMT.fa" ftype="fasta" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
73 <param name="input1" value="shrimp_wrapper_test2_end1.fastq" ftype="fastqsolexa" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
74 <param name="input2" value="shrimp_wrapper_test2_end2.fastq" ftype="fastqsolexa" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
75 <param name="insertion_size" value="600" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
76 <output name="output1" file="shrimp_wrapper_test2.out1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
77 </test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
78 <test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
79 <param name="single_or_paired" value="single" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
80 <param name="skip_or_full" value="full" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
81 <param name="input_target" value="shrimp_phix_anc.fa" ftype="fasta" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
82 <param name="input_query" value="shrimp_wrapper_test1.fastq" ftype="fastqsolexa"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
83 <param name="spaced_seed" value="111111011111" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
84 <param name="seed_matches_per_window" value="2" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
85 <param name="seed_hit_taboo_length" value="4" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
86 <param name="seed_generation_taboo_length" value="0" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
87 <param name="seed_window_length" value="115.0" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
88 <param name="max_hits_per_read" value="100" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
89 <param name="max_read_length" value="1000" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
90 <param name="kmer" value="-1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
91 <param name="sw_match_value" value="100" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
92 <param name="sw_mismatch_value" value="-150" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
93 <param name="sw_gap_open_ref" value="-400" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
94 <param name="sw_gap_open_query" value="-400" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
95 <param name="sw_gap_ext_ref" value="-70" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
96 <param name="sw_gap_ext_query" value="-70" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
97 <param name="sw_hit_threshold" value="68.0" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
98 <output name="output1" file="shrimp_wrapper_test1.out1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
99 </test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
100 <test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
101 <param name="single_or_paired" value="paired" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
102 <param name="skip_or_full" value="full" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
103 <param name="input_target" value="shrimp_eca_chrMT.fa" ftype="fasta" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
104 <param name="spaced_seed" value="111111011111" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
105 <param name="seed_matches_per_window" value="2" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
106 <param name="seed_hit_taboo_length" value="4" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
107 <param name="seed_generation_taboo_length" value="0" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
108 <param name="seed_window_length" value="115.0" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
109 <param name="max_hits_per_read" value="100" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
110 <param name="max_read_length" value="1000" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
111 <param name="kmer" value="-1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
112 <param name="sw_match_value" value="100" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
113 <param name="sw_mismatch_value" value="-150" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
114 <param name="sw_gap_open_ref" value="-400" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
115 <param name="sw_gap_open_query" value="-400" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
116 <param name="sw_gap_ext_ref" value="-70" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
117 <param name="sw_gap_ext_query" value="-70" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
118 <param name="sw_hit_threshold" value="68.0" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
119 <param name="input1" value="shrimp_wrapper_test2_end1.fastq" ftype="fastqsolexa"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
120 <param name="input2" value="shrimp_wrapper_test2_end2.fastq" ftype="fastqsolexa"/>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
121 <param name="insertion_size" value="600" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
122 <output name="output1" file="shrimp_wrapper_test2.out1" />
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
123 </test>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
124 -->
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
125 </tests>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
126 <help>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
127
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
128 .. class:: warningmark
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
129
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
130 IMPORTANT: This tool currently only supports data where the quality scores are integers or ASCII quality scores with base 64. Click pencil icon next to your dataset to set datatype to *fastqsolexa*.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
131
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
132
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
133 -----
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
134
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
135 **What it does**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
136
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
137 SHRiMP (SHort Read Mapping Package) is a software package for aligning genomic reads against a target genome.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
138
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
139 This wrapper post-processes the default SHRiMP/rmapper-ls output and generates a table with all information from reads and reference for the mapping. The tool takes single- or paired-end reads. For single-end reads, only uniquely mapped alignment is considered. In paired-end reads, only pairs that meet the following criteria will be used to generate the table: 1). the ends fall within the insertion size; 2). the ends are mapped at the opposite directions. If there are still multiple mappings after applying the criteria, this paired-end read will be discarded.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
140
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
141
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
142 -----
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
143
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
144 **Input formats**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
145
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
146 A multiple-fastq file, for example::
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
147
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
148 @seq1
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
149 TACCCGATTTTTTGCTTTCCACTTTATCCTACCCTT
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
150 +seq1
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
151 hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
152
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
153
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
154 -----
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
155
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
156 **Outputs**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
157
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
158 The tool gives two outputs.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
159
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
160 **Table output**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
161
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
162 Table output contains 8 columns::
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
163
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
164 1 2 3 4 5 6 7 8
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
165 ----------------------------------------------------
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
166 chrM 14711 seq1 0 T A 40 1
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
167 chrM 14712 seq1 1 T T 40 1
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
168
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
169 where::
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
170
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
171 1. (chrM) - Reference sequence id
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
172 2. (14711) - Position of the mapping in the reference
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
173 3. (seq1) - Read id
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
174 4. (0) - Position of the mapping in the read
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
175 5. (T) - Nucleotide in the reference
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
176 6. (A) - Nucleotide in the read
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
177 7. (40) - Quality score for the nucleotide in the position of the read
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
178 8. (1) - The number of times this position is covered by reads
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
179
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
180
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
181 **SHRiMP output**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
182
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
183 This is the default output from SHRiMP/rmapper-ls::
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
184
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
185 1 2 3 4 5 6 7 8 9 10
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
186 -------------------------------------------------------------------
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
187 seq1 chrM + 3644 3679 1 36 36 3600 36
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
188
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
189 where::
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
190
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
191 1. (seq1) - Read id
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
192 2. (chrM) - Reference sequence id
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
193 3. (+) - Strand of the read
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
194 4. (3466) - Start position of the alignment in the reference
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
195 5. (3679) - End position of the alignment in the reference
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
196 6. (1) - Start position of the alignment in the read
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
197 7. (36) - End position of the alignment in the read
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
198 8. (36) - Length of the read
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
199 9. (3600) - Score
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
200 10. (36) - Edit string
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
201
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
202
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
203 -----
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
204
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
205 **SHRiMP parameter list**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
206
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
207 The commonly used parameters with default value setting::
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
208
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
209 -s Spaced Seed (default: 111111011111)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
210 The spaced seed is a single contiguous string of 0's and 1's.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
211 0's represent wildcards, or positions which will always be
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
212 considered as matching, whereas 1's dictate positions that
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
213 must match. A string of all 1's will result in a simple kmer scan.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
214 -n Seed Matches per Window (default: 2)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
215 The number of seed matches per window dictates how many seeds
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
216 must match within some window length of the genome before that
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
217 region is considered for Smith-Waterman alignment. A lower
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
218 value will increase sensitivity while drastically increasing
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
219 running time. Higher values will have the opposite effect.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
220 -t Seed Hit Taboo Length (default: 4)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
221 The seed taboo length specifies how many target genome bases
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
222 or colors must exist prior to a previous seed match in order
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
223 to count another seed match as a hit.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
224 -9 Seed Generation Taboo Length (default: 0)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
225
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
226 -w Seed Window Length (default: 115.00%)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
227 This parameter specifies the genomic span in bases (or colours)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
228 in which *seed_matches_per_window* must exist before the read
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
229 is given consideration by the Simth-Waterman alignment machinery.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
230 -o Maximum Hits per Read (default: 100)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
231 This parameter specifies how many hits to remember for each read.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
232 If more hits are encountered, ones with lower scores are dropped
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
233 to make room.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
234 -r Maximum Read Length (default: 1000)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
235 This parameter specifies the maximum length of reads that will
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
236 be encountered in the dataset. If larger reads than the default
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
237 are used, an appropriate value must be passed to *rmapper*.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
238 -d Kmer Std. Deviation Limit (default: -1 [None])
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
239 This option permits pruning read kmers, which occur with
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
240 frequencies greater than *kmer_std_dev_limit* standard
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
241 deviations above the average. This can shorten running
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
242 time at the cost of some sensitivity.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
243 *Note*: A negative value disables this option.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
244 -m S-W Match Value (default: 100)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
245 The value applied to matches during the Smith-Waterman score calculation.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
246 -i S-W Mismatch Value (default: -150)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
247 The value applied to mismatches during the Smith-Waterman
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
248 score calculation.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
249 -g S-W Gap Open Penalty (Reference) (default: -400)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
250 The value applied to gap opens along the reference sequence
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
251 during the Smith-Waterman score calculation.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
252 *Note*: Note that for backward compatibility, if -g is set
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
253 and -q is not set, the gap open penalty for the query will
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
254 be set to the same value as specified for the reference.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
255 -q S-W Gap Open Penalty (Query) (default: -400)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
256 The value applied to gap opens along the query sequence during
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
257 the Smith-Waterman score calculation.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
258 -e S-W Gap Extend Penalty (Reference) (default: -70)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
259 The value applied to gap extends during the Smith-Waterman score calculation.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
260 *Note*: Note that for backward compatibility, if -e is set
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
261 and -f is not set, the gap exten penalty for the query will
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
262 be set to the same value as specified for the reference.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
263 -f S-W Gap Extend Penalty (Query) (default: -70)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
264 The value applied to gap extends during the Smith-Waterman score calculation.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
265 -h S-W Hit Threshold (default: 68.00%)
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
266 In letter-space, this parameter determines the threshold
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
267 score for both vectored and full Smith-Waterman alignments.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
268 Any values less than this quantity will be thrown away.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
269 *Note* This option differs slightly in meaning between letter-space and color-space.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
270
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
271
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
272 -----
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
273
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
274 **Reference**
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
275
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
276 **SHRiMP**: Stephen M. Rumble, Michael Brudno, Phil Lacroute, Vladimir Yanovsky, Marc Fiume, Adrian Dalca. shrimp at cs dot toronto dot edu.
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
277
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
278 </help>
9071e359b9a3 Uploaded
xuebing
parents:
diff changeset
279 </tool>