Mercurial > repos > wrtz > bcftools
diff samtools_faidx.xml @ 18:44265821f01f draft
Uploaded
author | wrtz |
---|---|
date | Thu, 14 Jan 2016 17:51:41 -0500 |
parents | |
children | 5c561fc5f05d |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/samtools_faidx.xml Thu Jan 14 17:51:41 2016 -0500 @@ -0,0 +1,24 @@ +<tool id="samtools_faidx" name="Faidx (SAMtools)" version="1.0.0"> + <description>Index FASTA file using samtools faidx command</description> + <command> + ln -s -f $input faidx_in.${input.ext} && + + samtools faidx + + faidx_in.${input.ext} && + cp faidx_in.${input.ext}.fai $output + </command> + <inputs> + <param name="input" type="data" label="FASTA input file" /> + </inputs> + <outputs> + <data name="output" label="${tool.name} on ${on_string}" /> + </outputs> + <help> +**About this tool** + +**Samtools faidx**: Index reference sequence in the FASTA format or extract subsequence from indexed reference sequence. Outputs index of input file. + +More info here: http://www.htslib.org/doc/samtools.html + </help> +</tool> \ No newline at end of file