0
|
1 <tool id="CufflinksGTFToBed" name="CufflinksGTFToBed" version="1.0">
|
|
2 <description>CufflinksGTFToBed can convert a result GTF file of Cufflinks into a bed file.</description>
|
|
3 <requirements>
|
|
4 <requirement type="package" version="1.0">TEiso_Tools</requirement>
|
|
5 </requirements>
|
|
6 <version_command>
|
|
7 CufflinksGTFToBed.py --version
|
|
8 </version_command>
|
|
9 <command interpreter="python">
|
|
10 CufflinksGTFToBed_Wrapper.py -i $inputFile -o $outputFile
|
|
11 </command>
|
|
12 <inputs>
|
|
13 <param name="inputFile" type="data" format="gtf" label="indicate a transcript GTF file of cufflinks."/>
|
|
14 </inputs>
|
|
15 <outputs>
|
|
16 <data name="outputFile" format="bed" label="${tool.name} on ${on_string} (BED)"/>
|
|
17 </outputs>
|
|
18 <help><![CDATA[
|
1
|
19
|
|
20
|
|
21
|
0
|
22 **CufflinksGTFToBed_wrapper converts a result GTF file of Cufflinks into a bed file.**
|
|
23
|
|
24 **what it does :**
|
|
25
|
1
|
26 Converts a GTF file of transcripts into a bed file. In input file, there are all the information of the transcript and their exon. CufflinksGTFToBed takes only the transcripts to convert into a bed file.
|
|
27
|
0
|
28 It can take: Chromosome, Start, End, strand, Isoform ID, Gene ID, value of FPKM
|
|
29
|
|
30 -----
|
|
31
|
1
|
32 **example :**
|
0
|
33
|
|
34
|
1
|
35 Transcript input file: ::
|
0
|
36
|
1
|
37 2L cufflinks transcript 10487 18076 372 - . gene_id "CUFF.1"; transcript_id "CUFF.1.1"; FPKM "1.3627628649"; frac "0.197041"; conf_lo "0.805777"; conf_hi "1.919748"; cov "1.706083";
|
0
|
38
|
|
39
|
1
|
40
|
|
41
|
|
42 ----
|
0
|
43
|
1
|
44 output format: ::
|
|
45
|
|
46 2L 10487 18076 CUFF.1.1 CUFF.1 - 1.363
|
|
47
|
0
|
48
|
|
49 ]]>
|
|
50 </help>
|
|
51 </tool>
|