Previous changeset 5:b04bc2828ea8 (2016-10-08) Next changeset 7:a1e1f50c6e73 (2016-10-08) |
Commit message:
Uploaded |
added:
alfa/alfa/alfa/toolExample.xml |
b |
diff -r b04bc2828ea8 -r 36b2931bbd38 alfa/alfa/alfa/toolExample.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/alfa/alfa/alfa/toolExample.xml Sat Oct 08 16:47:54 2016 -0400 |
b |
@@ -0,0 +1,23 @@ +<tool id="fa_gc_content_1" name="Compute GC content" version="0.1.0"> + <description>for each sequence in a file</description> + <command interpreter="perl">toolExample.pl $input $output</command> + <inputs> + <param format="fasta" name="input" type="data" label="Source file"/> + </inputs> + <outputs> + <data format="tabular" name="output" /> + </outputs> + + <tests> + <test> + <param name="input" value="fa_gc_content_input.fa"/> + <output name="out_file1" file="fa_gc_content_output.txt"/> + </test> + </tests> + + <help> +This tool computes GC content from a FASTA file. + </help> + +</tool> + |