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