Mercurial > repos > thanhlv > flye
comparison flye.xml @ 10:75b2cf8c5aa4 draft
"planemo upload for repository https://github.com/quadram-institute-bioscience/galaxy-tools/tree/master/tools/flye commit 2d9005e9f7366f761369b4ad7ddda383ff80a47f-dirty"
| author | thanhlv |
|---|---|
| date | Tue, 31 Mar 2020 20:20:32 +0000 |
| parents | 2a79279b6ff6 |
| children | c9168c451a85 |
comparison
equal
deleted
inserted
replaced
| 9:2a79279b6ff6 | 10:75b2cf8c5aa4 |
|---|---|
| 1 <tool id="flye" name="Flye assembler" version="@VERSION@"> | 1 <tool id="flye" name="Flye assembler" version="@VERSION@+galaxy1"> |
| 2 <description>of long and error-prone reads</description> | 2 <description>of long and error-prone reads</description> |
| 3 <macros> | 3 <macros> |
| 4 <token name="@VERSION@">2.7</token> | 4 <token name="@VERSION@">2.7</token> |
| 5 </macros> | 5 </macros> |
| 6 <requirements> | 6 <requirements> |
| 7 <requirement type="package" version="@VERSION@">flye</requirement> | 7 <requirement type="package" version="@VERSION@">flye</requirement> |
| 8 </requirements> | 8 </requirements> |
| 9 <version_command>flye --version</version_command> | 9 <version_command>flye --version</version_command> |
| 10 <command detect_errors="exit_code"> | 10 <command detect_errors="exit_code"> |
| 11 <![CDATA[ | 11 <![CDATA[ |
| 12 | |
| 13 #for $counter, $input in enumerate($inputs): | |
| 14 | |
| 15 #if $input.is_of_type('fastqsanger', 'fastq'): | 12 #if $input.is_of_type('fastqsanger', 'fastq'): |
| 16 #set $ext = 'fastq' | 13 #set $ext = 'fastq' |
| 17 #elif $input.is_of_type('fastqsanger.gz'): | 14 #elif $input.is_of_type('fastqsanger.gz'): |
| 18 #set $ext = 'fastq.gz' | 15 #set $ext = 'fastq.gz' |
| 19 #elif $input.is_of_type('fastq'): | 16 #elif $input.is_of_type('fastq'): |
| 23 #elif $input.is_of_type('fasta.gz'): | 20 #elif $input.is_of_type('fasta.gz'): |
| 24 #set $ext = 'fasta.gz' | 21 #set $ext = 'fasta.gz' |
| 25 #elif $input.is_of_type('fasta'): | 22 #elif $input.is_of_type('fasta'): |
| 26 #set $ext = 'fasta' | 23 #set $ext = 'fasta' |
| 27 #end if | 24 #end if |
| 28 ln -s '$input' ./input_${counter}.${ext} && | 25 ln -s '$input' ./input.${ext} && |
| 29 #end for | |
| 30 | |
| 31 flye | 26 flye |
| 32 $mode | 27 $mode |
| 33 #for $counter, $input in enumerate($inputs): | 28 ./input.$ext |
| 34 ./input_${counter}.$ext | |
| 35 #end for | |
| 36 | |
| 37 -o out_dir | 29 -o out_dir |
| 38 -g '$g' | 30 -g '$g' |
| 39 -t \${GALAXY_SLOTS:-4} | 31 -t \${GALAXY_SLOTS:-4} |
| 40 -i $i | 32 -i $i |
| 41 #if $m: | 33 #if $m: |
| 53 '$keep_haplotypes' | 45 '$keep_haplotypes' |
| 54 '$trestle' | 46 '$trestle' |
| 55 2>&1 | 47 2>&1 |
| 56 ]]> </command> | 48 ]]> </command> |
| 57 <inputs> | 49 <inputs> |
| 58 <param name="inputs" type="data" format="fasta,fasta.gz,fastq,fastq.gz,fastqsanger.gz,fastqsanger" multiple="true" label="Input reads"> | 50 <param name="input" type="data" format="fasta,fasta.gz,fastq,fastq.gz,fastqsanger.gz,fastqsanger" multiple="false" label="Input reads"> |
| 59 <help><