1
|
1 <tool id="salmon_index_builder_data_manager" name="Salmon" tool_type="manage_data" version="0.9.1">
|
|
2 <description>index builder</description>
|
|
3 <requirements>
|
6
|
4 <requirement type="package" version="0.11.2">salmon</requirement>
|
1
|
5 </requirements>
|
6
|
6 <macros>
|
|
7 <token name="@IDX_VERSION@">q5</token>
|
|
8 </macros>
|
1
|
9 <command detect_errors="exit_code"><![CDATA[
|
|
10 python '$__tool_directory__/salmon_index_builder.py' --output '${out_file}'
|
|
11 --fasta_filename '${all_fasta_source.fields.path}'
|
|
12 --fasta_dbkey '${all_fasta_source.fields.dbkey}'
|
|
13 --fasta_description '${all_fasta_source.fields.name}'
|
|
14 --kmer_size "${kmer_size}"
|
8
|
15 --data_table_name salmon_indexes_versioned
|
6
|
16 --index_version @IDX_VERSION@
|
1
|
17 ]]>
|
|
18 </command>
|
|
19 <inputs>
|
|
20 <param label="Source FASTA Sequence" name="all_fasta_source" type="select">
|
|
21 <options from_data_table="all_fasta" />
|
|
22 </param>
|
|
23 <param name="sequence_name" type="text" value="" label="Name of sequence" />
|
|
24 <param name="sequence_id" type="text" value="" label="ID for sequence" />
|
|
25 <param name="kmer_size" type="integer" optional='true' value="21" max="32" label="The size of the k-mer on which the index is built"
|
|
26 help="There is a tradeoff here between the distinctiveness of the k-mers and their robustness to errors. The shorter the k-mers, the more robust they will be to errors in the reads, but the longer the k-mers, the more distinct they will be. We generally recommend using a k-mer size of at least 20. MUST BE AN ODD VALUE "/>
|
|
27
|
|
28
|
|
29
|
|
30 </inputs>
|
|
31 <outputs>
|
|
32 <data name="out_file" format="data_manager_json" />
|
|
33 </outputs>
|
|
34 <help>
|
|
35 <![CDATA[
|
|
36 .. class:: infomark
|
|
37
|
|
38 **Notice:** If you leave name, description, or id blank, it will be generated automatically.
|
|
39 ]]>
|
|
40 </help>
|
|
41 </tool>
|
|
42
|