Mercurial > repos > nml > fasta2bed
comparison fasta_to_bed.xml @ 0:1b3c339fd390 draft default tip
planemo upload for repository https://github.com/phac-nml/galaxy_tools commit a0204b99a722240fe9b03b78a0786b30aa8ecc96
author | nml |
---|---|
date | Wed, 11 Oct 2017 11:46:25 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:1b3c339fd390 |
---|---|
1 <tool id="fasta2bed" name="Fasta to Bed File" version="1.0.0"> | |
2 <description>Create Bed file from Multiple fasta file</description> | |
3 <requirements> | |
4 <requirement type="package" version="1.6.924">perl-bioperl</requirement> | |
5 <requirement type="package" version="2.49">perl-getopt-long</requirement> | |
6 </requirements> | |
7 <command detect_errors="exit_code"><![CDATA[ | |
8 perl $__tool_directory__/fasta_to_bed.pl | |
9 -i '$dataset' | |
10 -o '$output' | |
11 ]]></command> | |
12 <inputs> | |
13 <param name="dataset" type="data" format="fasta" label="fasta or multifasta file" help="fasta to convert to bed file."/> | |
14 </inputs> | |
15 <outputs> | |
16 <data name="output" format="bed"/> | |
17 </outputs> | |
18 <tests> | |
19 <test> | |
20 <param name="dataset" value="contigs.fasta"/> | |
21 <output name="output" value="results.bed"/> | |
22 </test> | |
23 </tests> | |
24 <help> | |
25 Create a bed file format using the start and end position of one or more fata record in a fasta file. | |
26 | |
27 </help> | |
28 </tool> |