Mercurial > repos > petr-novak > repeat_annotation_pipeline3
annotate summarize_gff_by_attribute.xml @ 12:755a4d643184 draft default tip
planemo upload commit a61591d548f42ff417781e7fe7418dc2901ccc23
author | petr-novak |
---|---|
date | Tue, 26 Sep 2023 07:28:04 +0000 |
parents | 5366d5ea04bc |
children |
rev | line source |
---|---|
6
b53f5a456d01
"planemo upload commit 3aefb0555456837d10fe69e4ad25de08d5972cb2"
petr-novak
parents:
0
diff
changeset
|
1 <tool id="summarize_gff_by_attribute" name="Create summary on GFF3 attribute" version="0.1.0" python_template_version="3.5"> |
0 | 2 <requirements> |
3 <requirement type="package">bioconductor-rtracklayer</requirement> | |
4 </requirements> | |
11
5366d5ea04bc
planemo upload commit 9d1b19f98d8b7f0a0d1baf2da63a373d155626f8-dirty
petr-novak
parents:
6
diff
changeset
|
5 <required_files> |
5366d5ea04bc
planemo upload commit 9d1b19f98d8b7f0a0d1baf2da63a373d155626f8-dirty
petr-novak
parents:
6
diff
changeset
|
6 <include type="literal" path="summarize_gff_by_attribute.R"/> |
5366d5ea04bc
planemo upload commit 9d1b19f98d8b7f0a0d1baf2da63a373d155626f8-dirty
petr-novak
parents:
6
diff
changeset
|
7 </required_files> |
0 | 8 <command detect_errors="exit_code"><![CDATA[ |
11
5366d5ea04bc
planemo upload commit 9d1b19f98d8b7f0a0d1baf2da63a373d155626f8-dirty
petr-novak
parents:
6
diff
changeset
|
9 Rscript $__tool_directory__/summarize_gff_by_attribute.R '$input_gff' $attribute_name '$output_table' |
0 | 10 ]]></command> |
11 <inputs> | |
12 <param type="data" name="input_gff" format="gff" label="Input GFF"> | |
13 <sanitizer invalid_char=""> | |
14 <valid initial="string.ascii_letters,string.digits"> | |
15 <add value="_" /> | |
16 </valid> | |
17 </sanitizer> | |
18 </param> | |
11
5366d5ea04bc
planemo upload commit 9d1b19f98d8b7f0a0d1baf2da63a373d155626f8-dirty
petr-novak
parents:
6
diff
changeset
|
19 <param type="text" name="attribute_name" label="Name of attribute to summarize" optional="false" default="Name"/> |
0 | 20 </inputs> |
21 <outputs> | |
22 <data name="output_table" format="tsv" /> | |
23 </outputs> | |
24 <help><![CDATA[ | |
11
5366d5ea04bc
planemo upload commit 9d1b19f98d8b7f0a0d1baf2da63a373d155626f8-dirty
petr-novak
parents:
6
diff
changeset
|
25 Calculate summary statistics on GFF3 attribute. Summary included total number of features and total lenght per attribute value. |
0 | 26 ]]></help> |
27 </tool> |