43
|
1 <tool id="htseqsams2mxlocal" name="SAM/BAM to count matrix" version="0.4">
|
|
2 <description>using HTSeq code</description>
|
|
3 <stdio>
|
|
4 <regex match=".*" source="both" level="warning" description="chatter from HTSeq:"/>
|
|
5 </stdio>
|
|
6 <requirements>
|
|
7 <requirement type="package" version="0.7.6">pysam</requirement>
|
|
8 <requirement type="package" version="1.2">matplotlib</requirement>
|
|
9 <requirement type="package" version="0.5.4p3">htseq</requirement>
|
|
10 </requirements>
|
|
11 <command interpreter="python">
|
|
12 htseqsams2mx.py -g "$gfffile" -o "$outfile" -m "$model" --id_attribute "$id_attr" --feature_type "$feature_type"
|
|
13 --mapqMin $mapqMin --samf "'${firstsamf}','${firstsamf.name}','${firstsamf.ext}','${firstsamf.metadata.bam_index}'"
|
|
14 #if $secondsamf.ext != 'data':
|
|
15 --samf "'${secondsamf}','${secondsamf.name}','${secondsamf.ext}','${secondsamf.metadata.bam_index}'"
|
|
16 #end if
|
|
17 #for $s in $samfiles:
|
|
18 #if $s.samf.ext != 'data':
|
|
19 --samf "'${s.samf}','${s.samf.name}','${s.samf.ext}','${s.samf.metadata.bam_index}'"
|
|
20 #end if
|
|
21 #end for
|
|
22 #if $filter_extras:
|
|
23 --filter_extras "$filter_extras"
|
|
24 #end if
|
|
25 </command>
|
|
26 <inputs>
|
|
27 <param format="gtf" name="gfffile" type="data" label="Gene model (GFF) file to count reads over from your current history" size="100" />
|
|
28 <param name="mapqMin" label="Filter reads with mapq below than this value"
|
|
29 help="0 to count any mapping quality read. Otherwise only reads at or above specified mapq will be counted"
|
|
30 type="integer" value="5"/>
|
|
31 <param name="title" label="Name for this job's output file" type="text" size="80" value="bams to DGE count matrix"/>
|
|
32 <param name="stranded" value="false" type="boolean" label="Reads are stranded - use strand in counting" display="checkbox"
|
|
33 truevalue="yes" falsevalue="no" checked="no" help="Check this ONLY if you know your sequences are strand specific" />
|
|
34 <param name="model" type="select" label="Model for counting reads over the supplied gene model- see HTSeq docs"
|
|
35 help="If in doubt, union is a reasonable default but intersection-strict avoids double counting over overlapping exons">
|
|
36 <option value="union" selected="true">union</option>
|
|
37 <option value="intersection-strict">intersection-strict</option>
|
|
38 <option value="intersection-nonempty">intersection-nonempty</option>
|
|
39 </param>
|
|
40 <param name="id_attr" type="select" label="GTF attribute to output as the name for each contig - see HTSeq docs"
|
|
41 help="If in doubt, use gene name or if you need the id in your GTF, gene id">
|
|
42 <option value="gene_name" selected="true">gene name</option>
|
|
43 <option value="gene_id">gene id</option>
|
|
44 <option value="transcript_id">transcript id</option>
|
|
45 <option value="transcript_name">transcript name</option>
|
|
46 </param>
|
|
47 <param name="feature_type" type="select" label="GTF feature type for counting reads over the supplied gene model- see HTSeq docs"
|
|
48 help="GTF feature type to count over - exon is a good choice with gene name as the contig to count over">
|
|
49 <option value="exon" selected="true">exon</option>
|
|
50 <option value="CDS">CDS</option>
|
|
51 <option value="UTR">UTR</option>
|
|
52 <option value="transcript">transcript</option>
|
|
53 </param>
|
|
54 <param name="filter_extras" type="select" label="Filter any read with one or more flags"
|
|
55 help="eg the XS tag created by bowtie for multiple reads" optional="true" mutliple="true">
|
|
56 <option value="">None</option>
|
|
57 <option value="XS">XS:i > 0 - More than one mapping position Bowtie</option>
|
|
58 <option value="XS:A">Might be useful for tophat</option>
|
|
59 </param>
|
|
60
|
|
61 <param name="firstsamf" type="data" label="bam/sam file from your history" format="sam,bam" size="100"
|
|
62 help="Each sam/bam contributes a column of read counts overlapping the specified gene model contigs"
|
|
63 optional="false"/>
|
|
64 <param name="secondsamf" type="data" label="Additional bam/sam file from your history" format="sam,bam" size="100"
|
|
65 help="Each sam/bam contributes a column of read counts overlapping the specified gene model contigs"
|
|
66 optional="false"/>
|
|
67 <repeat name="samfiles" min="16"
|
|
68 title="Specify additional bam/sam file inputs" help="Each sam/bam contributes a column of read counts overlapping the specified gene model contigs">
|
|
69 <param name="samf" type="data" label="Additional bam/sam file from your history" format="sam,bam" size="100"
|
|
70 optional="true"/>
|
|
71 </repeat>
|
|
72 </inputs>
|
|
73 <outputs>
|
|
74 <data format="tabular" name="outfile" label="${title}_htseqsams2mx.xls" />
|
|
75 </outputs>
|
|
76 <tests>
|
|
77 <test>
|
|
78 <param name="feature_type" value="exon" />
|
|
79 <param name="gfffile" value="rn4_chr20_100k.gtf" />
|
|
80 <param name="firstsamf" value="rn4chr20test1.bam" ftype="bam"/>
|
|
81 <param name="secondsamf" value="rn4chr20test2.bam" ftype="bam"/>
|
|
82 <param name="id_attr" value="gene_name" />
|
|
83 <param name="model" value="union" />
|
|
84 <param name="stranded" value="no" />
|
|
85 <param name="title" value="htseqtest" />
|
|
86 <param name="mapqMin" value="0" />
|
|
87
|
|
88 <output name="outfile" file="htseqsams2mx_test1_out.xls" lines_diff="1"/>
|
|
89 </test>
|
|
90 </tests>
|
|
91 <help>
|
|
92
|
|
93 **What this tool does**
|
|
94
|
|
95 Counts reads in multiple sam/bam format mapped files and generates a matrix ideal for edgeR and other count based tools
|
|
96 It uses HTSeq to count your sam reads over a gene model supplied as a GTF file
|
|
97 The output is a tabular text (columnar - spreadsheet) file containing the
|
|
98 count matrix for downstream processing. Each row contains the counts from each sample for each
|
|
99 of the non-emtpy GTF input file contigs matching the GTF attribute choice above.
|
|
100 You probably want to use gene level GTF output attribute and count reads that overlap
|
|
101 GTF exons for RNA-seq. Or you can count over exons by using transcript level output names or ids. Etc.
|
|
102
|
|
103 ----
|
|
104
|
|
105 **Author's plea on replicates**
|
|
106
|
|
107 If you want to interpret the downstream p values in terms of rejecting or accepting the null hypothesis
|
|
108 under random sampling with replacement from the universe of possible biological/experimental replicates from which your data was derived,
|
|
109 which is what published p values are often assumed to do, then you need biological
|
|
110 (or for cell culture material experimental) replicates.
|
|
111
|
|
112 Using technical or no replicates means the downstream p values are not interpretable the way most people would assume
|
|
113 they are - ie as the probability of obtaining a result as or more extreme as your experimental data
|
|
114 in millions of experiments conducted using the same methods under the null hypothesis.
|
|
115
|
|
116 There is no way around this and it is scientific fraud to ignore this issue and publish bogus p values derived from
|
|
117 technical or no replicates without making the lack of biological or experimental error in the p value calculations
|
|
118 clear to your readers so they can adjust their expectations. However, the buck stops here at higher level inference.
|
|
119 If you have no replicates, you must not use this tool as the p values are uninterpretable. So there.
|
|
120
|
|
121 See your stats 101 notes on the central limit theorem and test statistics for a refresher or talk to a
|
|
122 statistician if this makes no sense please.
|
|
123
|
|
124 **Attribution**
|
|
125
|
|
126 This Galaxy tool relies on HTSeq_ from http://www-huber.embl.de/users/anders/HTSeq/doc/index.html
|
|
127 for the tricky work of counting. That code includes the following attribution:
|
|
128
|
|
129 ## Written by Simon Anders (sanders@fs.tum.de), European Molecular Biology
|
|
130 ## Laboratory (EMBL). (c) 2010. Released under the terms of the GNU General
|
|
131 ## Public License v3. Part of the 'HTSeq' framework, version HTSeq-0.5.4p3
|
|
132
|
|
133 It will be automatically installed if you use the toolshed as in general, you probably should.
|
|
134 HTSeq_ must be installed with this tool if you install manually.
|
|
135
|
|
136 Otherwise, all code and documentation comprising this tool including the requirement
|
|
137 for more than one sample bam
|
|
138 was written by Ross Lazarus and is
|
|
139 licensed to you under the LGPL_ like other rgenetics artefacts
|
|
140
|
|
141 Sorry, I don't use readgroups so had no reason to code read groups. Contributions welcome. Send code
|
|
142
|
|
143 .. _LGPL: http://www.gnu.org/copyleft/lesser.html
|
|
144 .. _HTSeq: http://www-huber.embl.de/users/anders/HTSeq/doc/index.html
|
|
145 </help>
|
|
146
|
|
147 </tool>
|