Mercurial > repos > iuc > stringtie
annotate stringtie.xml @ 5:f504b3b7e49d draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
author | iuc |
---|---|
date | Wed, 21 Oct 2015 16:07:42 -0400 |
parents | df42808cc33a |
children | d0bb240d7525 |
rev | line source |
---|---|
5
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
1 <tool id="stringtie" name="StringTie" version="1.1.0"> |
2
520e0988ec1c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit b03fd81ed11744f119608d4884c24fa182eb605a
iuc
parents:
1
diff
changeset
|
2 <description>transcript assembly and quantification</description> |
0 | 3 <requirements> |
5
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
4 <requirement type="package" version="1.1.0">stringtie</requirement> |
0 | 5 </requirements> |
1 | 6 <command><![CDATA[ |
0 | 7 stringtie "$input_bam" |
8 -o "$output_gtf" | |
9 -p "\${GALAXY_SLOTS:-1}" | |
10 #if str($guide.use_guide) == 'yes': | |
1 | 11 -C "$coverage" -G "$guide.guide_gff" $guide.input_estimation |
12 #if str($guide.output_ballgown) == '-b': | |
13 $guide.output_ballgown `pwd` | |
14 #end if | |
0 | 15 #end if |
16 #if str($option_set.options) == 'advanced': | |
1 | 17 -l "$option_set.name_prefix" |
0 | 18 -f "$option_set.fraction" |
19 -m "$option_set.min_tlen" | |
20 -a "$option_set.min_anchor_len" | |
21 -j "$option_set.min_anchor_cov" | |
22 -c "$option_set.min_bundle_cov" | |
4
df42808cc33a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit ba7b53894c61fea9a93550f865e9ed2753a904cf
iuc
parents:
2
diff
changeset
|
23 -g "$option_set.bdist" |
0 | 24 -M "$option_set.bundle_fraction" $option_set.sensitive $option_set.disable_trimming |
5
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
25 #if $option_set.A: |
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
26 -A "$gene_abundance_estimation" |
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
27 #end if |
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
28 #if str($option_set.x).strip() != "": |
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
29 -x "$option_set.x" |
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
30 #end if |
0 | 31 #end if |
32 ]]> | |
33 </command> | |
34 <inputs> | |
2
520e0988ec1c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit b03fd81ed11744f119608d4884c24fa182eb605a
iuc
parents:
1
diff
changeset
|
35 <param format="bam" label="Mapped reads to assemble transcripts from" name="input_bam" type="data" /> |
0 | 36 <conditional name="guide"> |
1 | 37 <param label="Use GFF file to guide assembly" name="use_guide" type="select"> |
0 | 38 <option value="yes">Use GFF</option> |
1 | 39 <option selected="True" value="no">Do not use GFF</option> |
0 | 40 </param> |
41 <when value="no" /> | |
42 <when value="yes"> | |
2
520e0988ec1c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit b03fd81ed11744f119608d4884c24fa182eb605a
iuc
parents:
1
diff
changeset
|
43 <param format="gtf,gff3" help="-G" label="Reference annotation to use for guiding the assembly process" name="guide_gff" type="data" /> |
520e0988ec1c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit b03fd81ed11744f119608d4884c24fa182eb605a
iuc
parents:
1
diff
changeset
|
44 <param falsevalue="" help="-e" label="Perform abundance estimation only of input transcripts" name="input_estimation" truevalue="-e" type="boolean" /> |
520e0988ec1c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit b03fd81ed11744f119608d4884c24fa182eb605a
iuc
parents:
1
diff
changeset
|
45 <param falsevalue="" help="-b" label="Output additional files for use in Ballgown" name="output_ballgown" truevalue="-b" type="boolean" /> |
0 | 46 </when> |
47 </conditional> | |
48 <conditional name="option_set"> | |
1 | 49 <param label="Options" name="options" type="select"> |
50 <option selected="True" value="default">Use defaults</option> | |
0 | 51 <option value="advanced">Specify advanced options</option> |
52 </param> | |
53 <when value="default" /> | |
54 <when value="advanced"> | |
2
520e0988ec1c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit b03fd81ed11744f119608d4884c24fa182eb605a
iuc
parents:
1
diff
changeset
|
55 <param falsevalue="" help="-t" label="Disable trimming of predicted transcripts based on coverage" name="disable_trimming" truevalue="-t" type="boolean" /> |
520e0988ec1c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit b03fd81ed11744f119608d4884c24fa182eb605a
iuc
parents:
1
diff
changeset
|
56 <param falsevalue="" help="-S" label="Increase sensitivity" name="sensitive" truevalue="-S" type="boolean" /> |
520e0988ec1c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit b03fd81ed11744f119608d4884c24fa182eb605a
iuc
parents:
1
diff
changeset
|
57 <param help="-l" label="Name prefix for output transcripts" name="name_prefix" type="text" value="STRG" /> |
520e0988ec1c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit b03fd81ed11744f119608d4884c24fa182eb605a
iuc
parents:
1
diff
changeset
|
58 <param help="-f" label="Minimum isoform fraction" max="1.0" min="0.0" name="fraction" type="float" value="0.15" /> |
520e0988ec1c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit b03fd81ed11744f119608d4884c24fa182eb605a
iuc
parents:
1
diff
changeset
|
59 <param help="-m" label="Minimum assembled transcript length" name="min_tlen" type="integer" value="200" /> |
520e0988ec1c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit b03fd81ed11744f119608d4884c24fa182eb605a
iuc
parents:
1
diff
changeset
|
60 <param help="-a" label="Minimum anchor length for junctions" name="min_anchor_len" type="integer" value="10" /> |
520e0988ec1c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit b03fd81ed11744f119608d4884c24fa182eb605a
iuc
parents:
1
diff
changeset
|
61 <param help="-j" label="Minimum junction coverage" name="min_anchor_cov" type="integer" value="1" /> |
520e0988ec1c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit b03fd81ed11744f119608d4884c24fa182eb605a
iuc
parents:
1
diff
changeset
|
62 <param help="-c" label="Minimum bundle reads per bp coverage to consider for assembly" name="min_bundle_cov" type="integer" value="2" /> |
520e0988ec1c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit b03fd81ed11744f119608d4884c24fa182eb605a
iuc
parents:
1
diff
changeset
|
63 <param help="-g" label="Gap between read mappings triggering a new bundle" name="bdist" type="integer" value="50" /> |
520e0988ec1c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit b03fd81ed11744f119608d4884c24fa182eb605a
iuc
parents:
1
diff
changeset
|
64 <param help="-M" label="Fraction of bundle allowed to be covered by multi-hit reads" name="bundle_fraction" type="float" value="0.95" /> |
5
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
65 <param argument="-x" type="text" value="" label="Do not assemble any transcripts on these reference sequence(s)" help="e.g. chrM,chrX" /> |
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
66 <param argument="-A" truevalue="-A" falsevalue="" type="boolean" help="" label="Additional gene abundance estimation output file" /> |
1 | 67 </when> |
0 | 68 </conditional> |
69 </inputs> | |
70 <outputs> | |
1 | 71 <data format="gtf" label="${tool.name} on ${on_string}: Assembled transcripts" name="output_gtf" /> |
5
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
72 <data format="tabular" label="${tool.name} on ${on_string}: Gene abundance estimates" name="gene_abundance_estimation"> |
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
73 <filter>option_set['A']</filter> |
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
74 </data> |
1 | 75 <data format="gff3" label="${tool.name} on ${on_string}: Coverage" name="coverage"> |
0 | 76 <filter>guide['use_guide'] == "yes"</filter> |
77 </data> | |
1 | 78 <data format="tabular" from_work_dir="e_data.ctab" label="${tool.name} on ${on_string}: exon-level expression measurements" name="exon_expression"> |
79 <filter>guide['output_ballgown']</filter> | |
80 </data> | |
81 <data format="tabular" from_work_dir="i_data.ctab" label="${tool.name} on ${on_string}: intron-level expression measurements" name="intron_expression"> | |
82 <filter>guide['output_ballgown']</filter> | |
83 </data> | |
84 <data format="tabular" from_work_dir="t_data.ctab" label="${tool.name} on ${on_string}: transcript-level expression measurements" name="transcript_expression"> | |
85 <filter>guide['output_ballgown']</filter> | |
86 </data> | |
87 <data format="tabular" from_work_dir="e2t.ctab" label="${tool.name} on ${on_string}: exon to transcript mapping" name="exon_transcript_mapping"> | |
88 <filter>guide['output_ballgown']</filter> | |
89 </data> | |
90 <data format="tabular" from_work_dir="i2t.ctab" label="${tool.name} on ${on_string}: intron to transcript mapping" name="intron_transcript_mapping"> | |
91 <filter>guide['output_ballgown']</filter> | |
92 </data> | |
0 | 93 </outputs> |
94 <tests> | |
95 <test> | |
1 | 96 <param ftype="bam" name="input_bam" value="stringtie_in1.bam" /> |
0 | 97 <param name="use_guide" value="no" /> |
98 <param name="options" value="default" /> | |
4
df42808cc33a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit ba7b53894c61fea9a93550f865e9ed2753a904cf
iuc
parents:
2
diff
changeset
|
99 <output file="stringtie_out1.gtf" ftype="gtf" name="output_gtf" lines_diff="2" /> |
0 | 100 </test> |
101 <test> | |
1 | 102 <param ftype="bam" name="input_bam" value="stringtie_in1.bam" /> |
0 | 103 <param name="use_guide" value="no" /> |
104 <param name="options" value="advanced" /> | |
105 <param name="fraction" value="0.17" /> | |
4
df42808cc33a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit ba7b53894c61fea9a93550f865e9ed2753a904cf
iuc
parents:
2
diff
changeset
|
106 <output file="stringtie_out2.gtf" ftype="gtf" name="output_gtf" lines_diff="2" /> |
1 | 107 </test> |
108 <test> | |
109 <param ftype="bam" name="input_bam" value="stringtie_in1.bam" /> | |
110 <param name="use_guide" value="yes" /> | |
111 <param name="guide_gff" value="stringtie_in.gtf" /> | |
112 <param name="options" value="default" /> | |
4
df42808cc33a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit ba7b53894c61fea9a93550f865e9ed2753a904cf
iuc
parents:
2
diff
changeset
|
113 <output file="stringtie_out3.gtf" ftype="gtf" name="output_gtf" lines_diff="2" /> |
1 | 114 </test> |
115 <test> | |
116 <param ftype="bam" name="input_bam" value="stringtie_in1.bam" /> | |
117 <param name="use_guide" value="yes" /> | |
118 <param name="guide_gff" value="stringtie_in.gtf" /> | |
119 <param name="options" value="advanced" /> | |
120 <param name="fraction" value="0.17" /> | |
4
df42808cc33a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit ba7b53894c61fea9a93550f865e9ed2753a904cf
iuc
parents:
2
diff
changeset
|
121 <output file="stringtie_out4.gtf" ftype="gtf" name="output_gtf" lines_diff="2" /> |
1 | 122 </test> |
123 <test> | |
124 <param ftype="bam" name="input_bam" value="stringtie_in1.bam" /> | |
125 <param name="use_guide" value="yes" /> | |
126 <param name="output_ballgown" value="yes" /> | |
127 <param name="guide_gff" value="stringtie_in.gtf" /> | |
128 <param name="options" value="default" /> | |
129 <output file="ballgown/e_data.ctab" ftype="tabular" name="exon_expression" /> | |
130 <output file="ballgown/i_data.ctab" ftype="tabular" name="intron_expression" /> | |
131 <output file="ballgown/t_data.ctab" ftype="tabular" name="transcript_expression" /> | |
132 <output file="ballgown/e2t.ctab" ftype="tabular" name="exon_transcript_mapping" /> | |
133 <output file="ballgown/i2t.ctab" ftype="tabular" name="intron_transcript_mapping" /> | |
4
df42808cc33a
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit ba7b53894c61fea9a93550f865e9ed2753a904cf
iuc
parents:
2
diff
changeset
|
134 <output file="stringtie_out5.gtf" ftype="gtf" name="output_gtf" lines_diff="2" /> |
1 | 135 <output file="stringtie_out_coverage.gtf" ftype="gff3" name="coverage" /> |
0 | 136 </test> |
5
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
137 <test> |
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
138 <param ftype="bam" name="input_bam" value="stringtie_in1.bam" /> |
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
139 <param name="use_guide" value="yes" /> |
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
140 <param name="guide_gff" value="stringtie_in.gtf" /> |
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
141 <param name="options" value="advanced" /> |
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
142 <param name="fraction" value="0.17" /> |
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
143 <param name="A" value="True" /> |
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
144 <output file="stringtie_out4.gtf" ftype="gtf" name="output_gtf" lines_diff="2" /> |
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
145 <output file="stringtie_out6.gtf" ftype="tabular" name="gene_abundance_estimation" /> |
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
146 </test> |
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
147 <test> |
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
148 <param ftype="bam" name="input_bam" value="stringtie_in1.bam" /> |
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
149 <param name="use_guide" value="yes" /> |
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
150 <param name="guide_gff" value="stringtie_in.gtf" /> |
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
151 <param name="options" value="advanced" /> |
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
152 <param name="fraction" value="0.15" /> |
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
153 <param name="c" value="test_chromosome" /> |
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
154 <output file="stringtie_out7.gtf" ftype="gtf" name="output_gtf" lines_diff="2" /> |
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
155 </test> |
0 | 156 </tests> |
157 <help> | |
158 <![CDATA[ | |
2
520e0988ec1c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit b03fd81ed11744f119608d4884c24fa182eb605a
iuc
parents:
1
diff
changeset
|
159 |
520e0988ec1c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit b03fd81ed11744f119608d4884c24fa182eb605a
iuc
parents:
1
diff
changeset
|
160 **What it does?** |
520e0988ec1c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit b03fd81ed11744f119608d4884c24fa182eb605a
iuc
parents:
1
diff
changeset
|
161 |
520e0988ec1c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit b03fd81ed11744f119608d4884c24fa182eb605a
iuc
parents:
1
diff
changeset
|
162 StringTie_ is a fast and highly efficient assembler of RNA-Seq alignments into potential transcripts. It uses a novel network flow algorithm as well as an optional *de novo* assembly step to assemble and quantitate full-length transcripts representing multiple splice variants for each gene locus. Its input can include not only the alignments of raw reads used by other transcript assemblers, but also alignments longer sequences that have been assembled from those reads.To identify differentially expressed genes between experiments, StringTie's output can be processed either by the Cuffdiff or Ballgown programs. |
0 | 163 |
2
520e0988ec1c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit b03fd81ed11744f119608d4884c24fa182eb605a
iuc
parents:
1
diff
changeset
|
164 .. _StringTie: http://ccb.jhu.edu/software/stringtie/ |
520e0988ec1c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit b03fd81ed11744f119608d4884c24fa182eb605a
iuc
parents:
1
diff
changeset
|
165 |
520e0988ec1c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit b03fd81ed11744f119608d4884c24fa182eb605a
iuc
parents:
1
diff
changeset
|
166 ------ |
520e0988ec1c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit b03fd81ed11744f119608d4884c24fa182eb605a
iuc
parents:
1
diff
changeset
|
167 |
520e0988ec1c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit b03fd81ed11744f119608d4884c24fa182eb605a
iuc
parents:
1
diff
changeset
|
168 StringTie has the following options:: |
520e0988ec1c
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit b03fd81ed11744f119608d4884c24fa182eb605a
iuc
parents:
1
diff
changeset
|
169 |
1 | 170 -G reference annotation to use for guiding the assembly process (GTF/GFF3) |
171 -l name prefix for output transcripts (default: STRG) | |
172 -f minimum isoform fraction (default: 0.1) | |
5
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
173 -m minimum assembled transcript length (default: 200) |
1 | 174 -o output path/file name for the assembled transcripts GTF (default: stdout) |
175 -a minimum anchor length for junctions (default: 10) | |
176 -j minimum junction coverage (default: 1) | |
177 -t disable trimming of predicted transcripts based on coverage | |
178 (default: coverage trimming is enabled) | |
179 -c minimum reads per bp coverage to consider for transcript assembly (default: 2.5) | |
180 -v verbose (log bundle processing details) | |
181 -g gap between read mappings triggering a new bundle (default: 50) | |
182 -C output file with reference transcripts that are covered by reads | |
183 -M fraction of bundle allowed to be covered by multi-hit reads (default:0.95) | |
184 -p number of threads (CPUs) to use (default: 1) | |
185 -B enable output of Ballgown table files which will be created in the | |
186 same directory as the output GTF (requires -G, -o recommended) | |
187 -b enable output of Ballgown table files but these files will be | |
188 created under the directory path given as <dir_path> | |
189 -e only estimates the abundance of given reference transcripts (requires -G) | |
5
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
190 -A gene abundance estimation output file |
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
191 -x do not assemble any transcripts on these reference sequence(s) |
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
192 |
f504b3b7e49d
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/stringtie commit 65c9ce2fdc2b4ce892df8e456f18b859a85c410a
iuc
parents:
4
diff
changeset
|
193 |
1 | 194 ]]> |
195 </help> | |
196 <citations> | |
197 <citation type="doi">doi:10.1038/nbt.3122</citation> | |
198 </citations> | |
199 </tool> |