7
|
1 <tool id="trips_create_annotation" name="Create TRIPS-Viz annotation" version="1.1">
|
0
|
2 <description>Covert GFF3/GTF and transcriptome FASTA to custom annotation sqlite</description>
|
|
3 <requirements>
|
|
4 <requirement type="package" version="3.37.1">sqlite</requirement>
|
4
|
5 <requirement type="package" version="3.0.2">python-intervaltree</requirement>
|
0
|
6
|
|
7 </requirements>
|
3
|
8 <command>
|
|
9 python $__tool_directory__/create_annotation_sqlite.py ${output1} ${input2} ${input3} ${input4} ${input5} ${input6} ${output1}
|
|
10 </command>
|
0
|
11 <inputs>
|
3
|
12 <param name="input1" type="text" label="Transcriptome name" help="This will be the outputs filename (No Spaces!)"/>
|
0
|
13 <param name="input2" type="data" format="gff" label="Transcriptome Annotation file (GFF/GTF)" />
|
|
14 <param name="input3" type="data" format="fasta" label="Transcriptome FASTA File" />
|
|
15 <param name="input4" type="integer" value="0" label="Psuedo UTR length" help="This value will be added used to create UTRs of this length. This is useful when looking at transcriptomes without annotated UTRs"/>
|
|
16 <param name="input5" type="text" label="Transcript ID" help="An example of a transcript_id from the annotation file, e.g ENST000000123456.1"/>
|
|
17 <param name="input6" type="text" label="Gene Name" help="An example of a gene name from the annotation file" />
|
|
18 </inputs>
|
|
19 <outputs>
|
|
20 <data name="output1" format="sqlite"/>
|
|
21 </outputs>
|
|
22 <tests>
|
|
23 <test>
|
2
|
24 <param name="input1" value="test_org" ftype="text"/>
|
0
|
25 <param name="input2" value="test.gtf" ftype="gff"/>
|
|
26 <param name="input3" value="test.fasta" ftype="fasta"/>
|
|
27 <param name="input4" value="0" ftype="integer"/>
|
2
|
28 <param name="input5" value="YDL248W" ftype="text"/>
|
0
|
29 <param name="input6" value="YDL248W" ftype="text"/>
|
2
|
30 <output name="output1" file="test_org.sqlite" ftype="sqlite" lines_diff="4" />
|
0
|
31 </test>
|
|
32 </tests>
|
|
33 <help>
|
|
34 **What it does**
|
|
35
|
3
|
36 Builds a custom transcirptome annoatation stored in sqlite format for your organism.
|
0
|
37 </help>
|
|
38 <citations/>
|
|
39 </tool>
|
|
40
|