Mercurial > repos > urgi-team > teiso
comparison TEiso/CufflinksGTFToBed_Wrapper.xml @ 16:836ce3d9d47a draft default tip
Uploaded
author | urgi-team |
---|---|
date | Thu, 21 Jul 2016 07:42:47 -0400 |
parents | 782306d67e39 |
children |
comparison
equal
deleted
inserted
replaced
15:255c852351c5 | 16:836ce3d9d47a |
---|---|
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[ | |
19 | |
20 | |
21 | |
22 **CufflinksGTFToBed_wrapper converts a result GTF file of Cufflinks into a bed file.** | |
23 | |
24 **what it does :** | |
25 | |
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 | |
28 It can take: Chromosome, Start, End, strand, Isoform ID, Gene ID, value of FPKM | |
29 | |
30 ----- | |
31 | |
32 **example :** | |
33 | |
34 | |
35 Transcript input file: :: | |
36 | |
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"; | |
38 | |
39 | |
40 | |
41 | |
42 ---- | |
43 | |
44 output format: :: | |
45 | |
46 2L 10487 18076 CUFF.1.1 CUFF.1 - 1.363 | |
47 | |
48 | |
49 ]]> | |
50 </help> | |
51 </tool> |