Mercurial > repos > thanhlv > qc3c
comparison qc3c_bam.xml @ 0:64d1f6186527 draft default tip
planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/qc3c commit bd5512047445d9a39a198b7cffeba78fe7b9d140-dirty
author | thanhlv |
---|---|
date | Mon, 07 Oct 2019 04:37:02 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:64d1f6186527 |
---|---|
1 <tool id="qc3c_bam" name="qc3c_bam" version="@VERSION@"> | |
2 <description>qc3C Alignment-based analysis</description> | |
3 <macros> | |
4 <import>macros.xml</import> | |
5 </macros> | |
6 <expand macro="requirements" /> | |
7 <expand macro="version_command" /> | |
8 <command detect_errors="exit_code"><![CDATA[ | |
9 qc3C bam | |
10 -p $sample_rate | |
11 -s $seed | |
12 --write_report | |
13 $verbose | |
14 -t \${GALAXY_SLOTS:-1} | |
15 --output-path './out' | |
16 -m $mean_insert | |
17 -q $min_mapq | |
18 #if str($neb_name) != "": | |
19 #for $enzyme in str($neb_name).split(',') | |
20 -e $enzyme | |
21 #end for | |
22 #end if | |
23 -b $bam | |
24 ]]></command> | |
25 | |
26 <inputs> | |
27 <param name="bam" type="data" format="bam" label="Input name-sorted bam file of Hi-C reads mapped to references" /> | |
28 <param name="sample_rate" type="float" min="0" value="0" label="Sample only a proportion of all read-pairs"/> | |
29 <param name="seed" type="integer" min="1" value="20191902" label="Minimum cluster extent used in output"/> | |
30 <param name="min_insert" type="integer" min="0" value="0" label="Minimum pair separation" /> | |
31 <param name="min_mapq" type="integer" min="0" value="60" label="Minimum acceptable mapping quality" /> | |
32 <param name="neb_name" type="text" value="" label="Case-sensitive NEB enzyme name. Use multiple times for | |
33 multiple enzymes" /> | |
34 <param name="verbose" type="boolean" truevalue="--verbose" falsevalue="" checked="false" label="Create a result report in JSONLines format" /> | |
35 </inputs> | |
36 | |
37 <outputs> | |
38 <data name="report" format="json" label="{tool.name} on ${on_string} Report" from_work_dir="out/report.jsonl"/> | |
39 <data name="log" format="text" label="{tool.name} on ${on_string} Log" from_work_dir="out/qc3C.log"/> | |
40 </outputs> | |
41 | |
42 <tests> | |
43 <test> | |
44 </test> | |
45 </tests> | |
46 <help><![CDATA[ | |
47 | |
48 Documentation can be found at `<https://github.com/cerebis/bin3C>`_. | |
49 | |
50 ]]></help> | |
51 <expand macro="citations" /> | |
52 </tool> |