1
|
1 <tool id="RNASeQC" name="RNASeQC">
|
|
2 <description>RNASeQC: Quality control metrics for RNA-seq data</description>
|
|
3 <requirements>
|
4
|
4 <requirement type="package" version="1.2.8">zlib</requirement>
|
1
|
5 <requirement type="package" version="0.6.2">bwa</requirement>
|
3
|
6 <requirement type="set_environment">RNASEQCPATH</requirement>
|
1
|
7 </requirements>
|
|
8 <command interpreter="java">
|
|
9 -jar \$RNASEQCPATH/RNASeQC.jar -r $input1 -t $input2 -s "SampleID|$input3|Notes" -o output
|
|
10 </command>
|
|
11
|
|
12 <inputs>
|
|
13
|
|
14 <param name="input1" type="data" format="fasta" label="Reference genome"/>
|
|
15 <param name="input2" type="data" format="gtf" label="File Defining transcipts"/>
|
|
16 <param name="input4" type="data" format="bam" label="BAM File"/>
|
|
17
|
|
18 </inputs>
|
|
19
|
|
20 <outputs>
|
|
21 <data format="txt" name="output" label="output file" />
|
|
22 </outputs>
|
|
23
|
|
24 <help>
|
|
25 This tool computes GC content from a FASTA file.
|
|
26 </help>
|
|
27
|
|
28 </tool>
|