annotate stringtie.xml @ 1:9f80c71f1779 draft

Uploaded updated tool wrapper for stringtie 1.0.1
author iuc
date Thu, 05 Mar 2015 11:41:12 -0500
parents 62d212192002
children 520e0988ec1c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
1 <tool id="stringtie" name="StringTie" version="1.0.1">
0
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
2 <description>RNA-Seq assembler</description>
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
3 <requirements>
1
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
4 <requirement type="package" version="1.0.1">stringtie</requirement>
0
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
5 </requirements>
1
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
6 <command><![CDATA[
0
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
7 stringtie "$input_bam"
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
8 -o "$output_gtf"
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
9 -p "\${GALAXY_SLOTS:-1}"
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
10 #if str($guide.use_guide) == 'yes':
1
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
11 -C "$coverage" -G "$guide.guide_gff" $guide.input_estimation
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
12 #if str($guide.output_ballgown) == '-b':
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
13 $guide.output_ballgown `pwd`
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
14 #end if
0
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
15 #end if
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
16 #if str($option_set.options) == 'advanced':
1
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
17 -l "$option_set.name_prefix"
0
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
18 -f "$option_set.fraction"
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
19 -m "$option_set.min_tlen"
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
20 -a "$option_set.min_anchor_len"
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
21 -j "$option_set.min_anchor_cov"
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
22 -c "$option_set.min_bundle_cov"
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
23 -s "$option_set.maxcov"
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
24 -g "$option_set.bdist"
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
25 -M "$option_set.bundle_fraction" $option_set.sensitive $option_set.disable_trimming
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
26 #end if
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
27 ]]>
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
28 </command>
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
29 <inputs>
1
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
30 <param format="bam" label="BAM file to assemble" name="input_bam" type="data" />
0
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
31 <conditional name="guide">
1
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
32 <param label="Use GFF file to guide assembly" name="use_guide" type="select">
0
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
33 <option value="yes">Use GFF</option>
1
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
34 <option selected="True" value="no">Do not use GFF</option>
0
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
35 </param>
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
36 <when value="no" />
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
37 <when value="yes">
1
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
38 <param format="gtf,gff3" help="(-G)" label="Reference annotation to use for guiding the assembly process" name="guide_gff" type="data" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
39 <param falsevalue="" help="(-e)" label="Perform abundance estimation only of input transcripts" name="input_estimation" truevalue="-e" type="boolean" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
40 <param falsevalue="" help="(-b)" label="Output additional files for use in Ballgown" name="output_ballgown" truevalue="-b" type="boolean" />
0
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
41 </when>
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
42 </conditional>
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
43 <conditional name="option_set">
1
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
44 <param label="Options" name="options" type="select">
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
45 <option selected="True" value="default">Use defaults</option>
0
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
46 <option value="advanced">Specify advanced options</option>
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
47 </param>
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
48 <when value="default" />
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
49 <when value="advanced">
1
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
50 <param falsevalue="" help="(-t)" label="Disable trimming of predicted transcripts based on coverage" name="disable_trimming" truevalue="-t" type="boolean" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
51 <param falsevalue="" help="(-S)" label="Increase sensitivity" name="sensitive" truevalue="-S" type="boolean" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
52 <param help="(-l)" label="Name prefix for output transcripts" name="name_prefix" type="text" value="STRG" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
53 <param help="(-f)" label="Minimum isoform fraction" max="1.0" min="0.0" name="fraction" type="float" value="0.15" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
54 <param help="(-m)" label="Minimum assembled transcript length" name="min_tlen" type="integer" value="200" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
55 <param help="(-a)" label="Minimum anchor length for junctions" name="min_anchor_len" type="integer" value="10" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
56 <param help="(-j)" label="Minimum junction coverage" name="min_anchor_cov" type="integer" value="1" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
57 <param help="(-c)" label="Minimum bundle reads per bp coverage to consider for assembly" name="min_bundle_cov" type="integer" value="2" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
58 <param help="(-s)" label="Coverage saturation threshold" name="maxcov" type="integer" value="1000000" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
59 <param help="(-g)" label="Gap between read mappings triggering a new bundle" name="bdist" type="integer" value="50" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
60 <param help="(-M)" label="Fraction of bundle allowed to be covered by multi-hit reads" name="bundle_fraction" type="float" value="0.95" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
61 </when>
0
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
62 </conditional>
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
63 </inputs>
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
64 <outputs>
1
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
65 <data format="gtf" label="${tool.name} on ${on_string}: Assembled transcripts" name="output_gtf" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
66 <data format="gff3" label="${tool.name} on ${on_string}: Coverage" name="coverage">
0
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
67 <filter>guide['use_guide'] == "yes"</filter>
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
68 </data>
1
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
69 <data format="tabular" from_work_dir="e_data.ctab" label="${tool.name} on ${on_string}: exon-level expression measurements" name="exon_expression">
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
70 <filter>guide['output_ballgown']</filter>
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
71 </data>
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
72 <data format="tabular" from_work_dir="i_data.ctab" label="${tool.name} on ${on_string}: intron-level expression measurements" name="intron_expression">
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
73 <filter>guide['output_ballgown']</filter>
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
74 </data>
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
75 <data format="tabular" from_work_dir="t_data.ctab" label="${tool.name} on ${on_string}: transcript-level expression measurements" name="transcript_expression">
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
76 <filter>guide['output_ballgown']</filter>
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
77 </data>
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
78 <data format="tabular" from_work_dir="e2t.ctab" label="${tool.name} on ${on_string}: exon to transcript mapping" name="exon_transcript_mapping">
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
79 <filter>guide['output_ballgown']</filter>
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
80 </data>
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
81 <data format="tabular" from_work_dir="i2t.ctab" label="${tool.name} on ${on_string}: intron to transcript mapping" name="intron_transcript_mapping">
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
82 <filter>guide['output_ballgown']</filter>
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
83 </data>
0
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
84 </outputs>
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
85 <tests>
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
86 <test>
1
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
87 <param ftype="bam" name="input_bam" value="stringtie_in1.bam" />
0
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
88 <param name="use_guide" value="no" />
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
89 <param name="options" value="default" />
1
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
90 <output file="stringtie_out1.gtf" ftype="gtf" name="output_gtf" />
0
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
91 </test>
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
92 <test>
1
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
93 <param ftype="bam" name="input_bam" value="stringtie_in1.bam" />
0
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
94 <param name="use_guide" value="no" />
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
95 <param name="options" value="advanced" />
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
96 <param name="fraction" value="0.17" />
1
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
97 <output file="stringtie_out2.gtf" ftype="gtf" name="output_gtf" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
98 </test>
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
99 <test>
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
100 <param ftype="bam" name="input_bam" value="stringtie_in1.bam" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
101 <param name="use_guide" value="yes" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
102 <param name="guide_gff" value="stringtie_in.gtf" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
103 <param name="options" value="default" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
104 <output file="stringtie_out3.gtf" ftype="gtf" name="output_gtf" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
105 </test>
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
106 <test>
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
107 <param ftype="bam" name="input_bam" value="stringtie_in1.bam" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
108 <param name="use_guide" value="yes" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
109 <param name="guide_gff" value="stringtie_in.gtf" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
110 <param name="options" value="advanced" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
111 <param name="fraction" value="0.17" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
112 <output file="stringtie_out4.gtf" ftype="gtf" name="output_gtf" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
113 </test>
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
114 <test>
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
115 <param ftype="bam" name="input_bam" value="stringtie_in1.bam" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
116 <param name="use_guide" value="yes" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
117 <param name="output_ballgown" value="yes" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
118 <param name="guide_gff" value="stringtie_in.gtf" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
119 <param name="options" value="default" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
120 <output file="ballgown/e_data.ctab" ftype="tabular" name="exon_expression" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
121 <output file="ballgown/i_data.ctab" ftype="tabular" name="intron_expression" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
122 <output file="ballgown/t_data.ctab" ftype="tabular" name="transcript_expression" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
123 <output file="ballgown/e2t.ctab" ftype="tabular" name="exon_transcript_mapping" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
124 <output file="ballgown/i2t.ctab" ftype="tabular" name="intron_transcript_mapping" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
125 <output file="stringtie_out5.gtf" ftype="gtf" name="output_gtf" />
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
126 <output file="stringtie_out_coverage.gtf" ftype="gff3" name="coverage" />
0
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
127 </test>
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
128 </tests>
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
129 <help>
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
130 <![CDATA[
1
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
131 StringTie v1.0.1 usage:
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
132 stringtie <input.bam> [-G <guide_gff>] [-l <label>] [-o <out_gtf>] [-p <cpus>]
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
133 [-v] [-a <min_anchor_len>] [-m <min_tlen>] [-j <min_anchor_cov>] [-n sens]
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
134 [-C <coverage_file_name>] [-s <maxcov>] [-c <min_bundle_cov>] [-g <bdist>]
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
135 {-B | -b <dir_path>} [-e]
0
62d212192002 Imported from capsule None
iuc
parents:
diff changeset
136
1
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
137 Assemble RNA-Seq alignments into potential transcripts.
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
138
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
139 Options:
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
140 -G reference annotation to use for guiding the assembly process (GTF/GFF3)
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
141 -l name prefix for output transcripts (default: STRG)
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
142 -f minimum isoform fraction (default: 0.1)
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
143 -m minimum assembled transcript length to report (default 200bp)
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
144 -o output path/file name for the assembled transcripts GTF (default: stdout)
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
145 -a minimum anchor length for junctions (default: 10)
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
146 -j minimum junction coverage (default: 1)
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
147 -t disable trimming of predicted transcripts based on coverage
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
148 (default: coverage trimming is enabled)
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
149 -c minimum reads per bp coverage to consider for transcript assembly (default: 2.5)
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
150 -s coverage saturation threshold; further read alignments will be
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
151 ignored in a region where a local coverage depth of <maxcov>
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
152 is reached (default: 1,000,000);
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
153 -v verbose (log bundle processing details)
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
154 -g gap between read mappings triggering a new bundle (default: 50)
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
155 -C output file with reference transcripts that are covered by reads
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
156 -M fraction of bundle allowed to be covered by multi-hit reads (default:0.95)
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
157 -p number of threads (CPUs) to use (default: 1)
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
158 -B enable output of Ballgown table files which will be created in the
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
159 same directory as the output GTF (requires -G, -o recommended)
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
160 -b enable output of Ballgown table files but these files will be
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
161 created under the directory path given as <dir_path>
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
162 -e only estimates the abundance of given reference transcripts (requires -G)
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
163 ]]>
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
164 </help>
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
165 <citations>
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
166 <citation type="doi">doi:10.1038/nbt.3122</citation>
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
167 </citations>
9f80c71f1779 Uploaded updated tool wrapper for stringtie 1.0.1
iuc
parents: 0
diff changeset
168 </tool>