Mercurial > repos > iuc > medaka_variant_pipeline
comparison medaka_variant.xml @ 1:92cdc29a8620 draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/medaka commit e5b495e8ace37eaf31a3430a29de11c83416dc2c"
author | iuc |
---|---|
date | Thu, 28 May 2020 02:39:16 -0400 |
parents | 711d4deb7bdf |
children | ce2bf68a260d |
comparison
equal
deleted
inserted
replaced
0:711d4deb7bdf | 1:92cdc29a8620 |
---|---|
4 <import>macros.xml</import> | 4 <import>macros.xml</import> |
5 </macros> | 5 </macros> |
6 <expand macro="requirements"/> | 6 <expand macro="requirements"/> |
7 <expand macro="version_command"/> | 7 <expand macro="version_command"/> |
8 <command detect_errors="exit_code"><![CDATA[ | 8 <command detect_errors="exit_code"><![CDATA[ |
9 ## initialize | 9 ## initialize |
10 @REF_FASTA@ | 10 @REF_FASTA@ |
11 ## link doesn't work | 11 ## link doesn't work |
12 cp '${i}' 'alignment.bam' && | 12 cp '${i}' alignment.bam && |
13 cp '${i.metadata.bam_index}' 'alignment.bam.bai' && | 13 cp '${i.metadata.bam_index}' alignment.bam.bai && |
14 | 14 |
15 ## run | 15 ## run |
16 medaka_variant | 16 medaka_variant |
17 ## optional | 17 ## optional |
18 #if str($r) != '' | 18 #if $r: |
19 -r '$r' | 19 -r '$r' |
20 #end if | 20 #end if |
21 -o 'results' | 21 -o results |
22 -s '$s' | 22 -s $s |
23 -m '$m' | 23 -m $m |
24 -t \${GALAXY_SLOTS:-4} | 24 -t \${GALAXY_SLOTS:-4} |
25 -b $b | 25 -b $b |
26 -N $N | 26 -N $N |
27 -P $P | 27 -P $P |
28 $U | 28 $U |
29 $S | 29 $S |
30 ## required | 30 ## required |
31 -i 'alignment.bam' | 31 -i alignment.bam |
32 -f 'reference.fa' | 32 -f reference.fa |
33 | 33 |
34 |& tee 'log.txt' | 34 |& tee '$out_log' |
35 ]]></command> | 35 ]]></command> |
36 <inputs> | 36 <inputs> |
37 <param argument="-i" type="data" format="bam" label="Select input reads" help="Read groups are currently ignored, so the bam should only contain reads from a single sample."/> | 37 <param argument="-i" type="data" format="bam" label="Select input reads" help="Read groups are currently ignored, so the bam should only contain reads from a single sample."/> |
38 <expand macro="reference"/> | 38 <expand macro="reference"/> |
39 <param argument="-r" type="text" value="" optional="true" label="Set region string(s)" help="If not provided, will process all contigs."/> | 39 <param argument="-r" type="text" value="" optional="true" label="Set region string(s)" help="If not provided, will process all contigs."/> |
90 <filter>'round_1_hap_2_probs_hdf' in out</filter> | 90 <filter>'round_1_hap_2_probs_hdf' in out</filter> |
91 </data> | 91 </data> |
92 <data name="out_round_1_unfiltered_vcf" format="vcf" label="${tool.name} on ${on_string}: round_1_unfiltered.vcf" from_work_dir="results/round_1_unfiltered.vcf"> | 92 <data name="out_round_1_unfiltered_vcf" format="vcf" label="${tool.name} on ${on_string}: round_1_unfiltered.vcf" from_work_dir="results/round_1_unfiltered.vcf"> |
93 <filter>'round_1_unfiltered_vcf' in out</filter> | 93 <filter>'round_1_unfiltered_vcf' in out</filter> |
94 </data> | 94 </data> |
95 <data name="out_log" format="txt" label="${tool.name} on ${on_string}: Log" from_work_dir="log.txt"> | 95 <data name="out_log" format="txt" label="${tool.name} on ${on_string}: Log"> |
96 <filter>'log' in out</filter> | 96 <filter>'log' in out</filter> |
97 </data> | 97 </data> |
98 </outputs> | 98 </outputs> |
99 <tests> | 99 <tests> |
100 <!-- #1 default --> | 100 <!-- #1 default --> |