18
|
1 <tool id="samtools_faidx" name="Faidx (SAMtools)" version="1.0.0">
|
|
2 <description>Index FASTA file using samtools faidx command</description>
|
30
|
3 <requirements>
|
|
4 <requirement type="package" version="1.2">samtools</requirement>
|
|
5 </requirements>
|
18
|
6 <command>
|
|
7 ln -s -f $input faidx_in.${input.ext} &&
|
|
8
|
|
9 samtools faidx
|
|
10
|
|
11 faidx_in.${input.ext} &&
|
|
12 cp faidx_in.${input.ext}.fai $output
|
|
13 </command>
|
|
14 <inputs>
|
|
15 <param name="input" type="data" label="FASTA input file" />
|
|
16 </inputs>
|
|
17 <outputs>
|
|
18 <data name="output" label="${tool.name} on ${on_string}" />
|
|
19 </outputs>
|
|
20 <help>
|
|
21 **About this tool**
|
|
22
|
|
23 **Samtools faidx**: Index reference sequence in the FASTA format or extract subsequence from indexed reference sequence. Outputs index of input file.
|
|
24
|
|
25 More info here: http://www.htslib.org/doc/samtools.html
|
|
26 </help>
|
|
27 </tool> |