2
|
1 <?xml version="1.0"?>
|
|
2 <tool id="featurecounts_gxfloader" name="featurecounts" tool_type="manage_data" version="1.0.1">
|
|
3 <description>GFF/GTF loader</description>
|
|
4 <requirements>
|
|
5 <requirement type="package" version="1.4.6.p5">featurecounts</requirement>
|
|
6 <requirement type="set_environment">FCOUNT_SCRIPT_PATH</requirement>
|
|
7 </requirements>
|
|
8 <stdio>
|
|
9 <exit_code description="Error" level="fatal" range="1:" />
|
|
10 </stdio>
|
|
11 <!-- <version_command>kraken -version | awk '{print $NF}'</version_command> -->
|
|
12 <command>
|
|
13 <![CDATA[
|
|
14 mkdir featurecount_gxf && cp "$gxf" featurecount_gxf/ &&
|
|
15 cd .. && python \$FCOUNT_SCRIPT_PATH/data_manager/make_json.py --dbkey "${dbkey}" --provider "${provider}" --ref "${ref}"--out "${out_file}"
|
|
16 ]]>
|
|
17 </command>
|
|
18 <inputs>
|
|
19 <param label="Name for this GFF/GTF" name="dbkey" type="text" />
|
|
20 <param label="Provider for this GFF/GTF" name="provider" type="text" />
|
|
21 <param label="Reference URL for this GFF/GTF" name="ref" type="text" />
|
|
22 <param format="gff,gtf,tabular" label="Select history item" multiple="True" name="gxf" type="data" />
|
|
23 </inputs>
|
|
24 <outputs>
|
|
25 <data format="data_manager_json" name="out_file" />
|
|
26 </outputs>
|
|
27
|
|
28 </tool>
|