annotate SMART/galaxy/cleanGff.xml @ 16:6135c3075bc5

Deleted selected files
author m-zytnicki
date Mon, 22 Apr 2013 11:09:41 -0400
parents 440ceca58672
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
1 <tool id="cleanGff" name="clean Gff">
15
440ceca58672 Uploaded
m-zytnicki
parents: 6
diff changeset
2 <description>Clean a GFF file (e.g. as given by NCBI) and produces a new GFF3 file, understood by S-MART.</description>
6
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
3 <command interpreter="python"> ../Java/Python/cleanGff.py -i $inputFile
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
4 -t $type
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
5 -o $outputFile
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
6 </command>
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
7
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
8 <inputs>
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
9 <param name="inputFile" type="data" label="Input File" format="gff"/>
15
440ceca58672 Uploaded
m-zytnicki
parents: 6
diff changeset
10 <param name="type" type="text" value="tRNA,rRNA,ncRNA,CDS" label="Tags you keep" help="lists of comma separated types that you want to keep, e.g. ncRNA,tRNA,rRNA,CDS"/>
6
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
11 </inputs>
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
12
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
13 <outputs>
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
14 <data format="gff3" name="outputFile" label="[cleanGff] Output File"/>
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
15 </outputs>
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
16
15
440ceca58672 Uploaded
m-zytnicki
parents: 6
diff changeset
17 <help>
440ceca58672 Uploaded
m-zytnicki
parents: 6
diff changeset
18 A GFF file (please consult http://www.sequenceontology.org/gff3.shtml to know more about it) may contain different sources of information: chromosome size, genes, transcripts, etc. S-MART mostly works on transcripts. This scripts filters the input GFF3 to keep the information you really want, based on the feature (3rd column).
440ceca58672 Uploaded
m-zytnicki
parents: 6
diff changeset
19 </help>
6
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
20 </tool>
769e306b7933 Change the repository level.
yufei-luo
parents:
diff changeset
21