Mercurial > repos > iuc > snippy
diff snippy.xml @ 10:a3f95a688c47 draft
"planemo upload commit 02413e02c9484cdb604bda2c09931599f9259792"
| author | iuc |
|---|---|
| date | Tue, 28 Jan 2020 02:50:09 +0000 |
| parents | 43791d945de1 |
| children | ac6e4444e3b8 |
line wrap: on
line diff
--- a/snippy.xml Sun Dec 01 18:05:33 2019 +0000 +++ b/snippy.xml Tue Jan 28 02:50:09 2020 +0000 @@ -1,4 +1,4 @@ -<tool id="snippy" name="snippy" version="@VERSION@+galaxy1"> +<tool id="snippy" name="snippy" version="@VERSION@+galaxy2"> <description> Snippy finds SNPs between a haploid reference genome and your NGS sequence reads. </description> @@ -12,8 +12,19 @@ @REFERENCE_SOURCE_FILE@ + #import re + #if str( $fastq_input.fastq_input_selector ) == "paired" + #set $dir_name = re.sub('[^\w_]', '_', $fastq_input.fastq_input1.element_identifier) + #elif str( $fastq_input.fastq_input_selector ) == "paired_collection" + #set $dir_name = re.sub('[^\w_]', '_', $fastq_input.fastq_input.name) + #elif str( $fastq_input.fastq_input_selector ) == "single" + #set $dir_name = re.sub('[^\w_]', '_', $fastq_input.fastq_input_single.element_identifier) + #elif str( $fastq_input.fastq_input_selector ) == "paired_iv" + #set $dir_name = re.sub('[^\w_]', '_', $fastq_input.fastq_input_interleaved.element_identifier) + #end if + snippy - --outdir 'out' + --outdir '${dir_name}' --cpus \${GALAXY_SLOTS:-1} --ram \$((\${GALAXY_MEMORY_MB:-4096}/1024)) @REFERENCE_COMMAND@ @@ -40,26 +51,12 @@ --peil '$fastq_input.fastq_input_interleaved' #end if - && - - #import re - #if str( $fastq_input.fastq_input_selector ) == "paired" - #set $dir_name = re.sub('[^\w_]', '_', $fastq_input.fastq_input1.element_identifier) - #elif str( $fastq_input.fastq_input_selector ) == "paired_collection" - #set $dir_name = re.sub('[^\w_]', '_', $fastq_input.fastq_input.name) - #elif str( $fastq_input.fastq_input_selector ) == "single" - #set $dir_name = re.sub('[^\w_]', '_', $fastq_input.fastq_input_single.element_identifier) - #elif str( $fastq_input.fastq_input_selector ) == "paired_iv" - #set $dir_name = re.sub('[^\w_]', '_', $fastq_input.fastq_input_interleaved.element_identifier) + #if "outcon" in str($outputs) and $adv.rename_cons + && sed -i 's/>.*/>${dir_name}/' '${dir_name}/snps.consensus.fa' #end if - mkdir -p ${dir_name} && cp -r out/reference out/snps.tab out/snps.aligned.fa out/snps.vcf ${dir_name}/ && - tar -czf out.tgz ${dir_name} - #if "outcon" in str($outputs) and $adv.rename_cons - && sed -i 's/>.*/>${dir_name}/' out/snps.consensus.fa - #end if - - + && cp -r '${dir_name}' out + && tar -czf out.tgz '${dir_name}' ]]> </command> <inputs>
