|
0
|
1 <tool id="splitTranscriptGff" name="splitTranscriptGff">
|
|
|
2 <description> Define UTRs and intergenic operonic regions from a transcript file and following a reference file </description>
|
|
|
3 <command interpreter="perl">
|
|
|
4 splitTranscriptGff.pl -i $referenciesFile -j $transcriptsFile > $outputFile
|
|
|
5 </command>
|
|
|
6
|
|
|
7 <inputs>
|
|
|
8 <param name="referenciesFile" type="data" label="Referencies Input File" format="gff" />
|
|
|
9 <param name="transcriptsFile" type="data" label="Transcripts Input File" format="gff" />
|
|
|
10 </inputs>
|
|
|
11
|
|
|
12 <outputs>
|
|
|
13 <data format="gff3" name="outputFile" label="[splitTranscript] Output File"/>
|
|
|
14 </outputs>
|
|
|
15
|
|
|
16 <tests>
|
|
|
17 <test>
|
|
|
18 <param name="referenciesFile" value="SplitTranscript_Reference.gff" />
|
|
|
19 <param name="transcriptsFile" value="SplitTranscript_TranscriptionUnit.gff" />
|
|
|
20 <output name="outputFile" file="SplitTranscript_Result.gff" />
|
|
|
21 </test>
|
|
|
22 </tests>
|
|
|
23
|
|
|
24 <help>
|
|
|
25 Note that inputs files should be sorted by increasing positions and that expressed referencies should be included in transcripts.
|
|
|
26
|
|
|
27 Command example: perl splitTranscriptGff.pl -i annotations.gff -j transcripts.gff > split_UTR_CDS.gff3
|
|
|
28 </help>
|
|
|
29 </tool>
|