comparison trimmer.xml @ 2:a8fd651dcbd9 draft

"planemo upload commit 9a5d91c35d21411a0733cd233ca588ff358aabd8-dirty"
author nick
date Fri, 27 May 2022 22:46:30 +0000
parents 7ef568cbf13b
children d8b86dc67f84
comparison
equal deleted inserted replaced
1:7ef568cbf13b 2:a8fd651dcbd9
1 <?xml version="1.0"?> 1 <?xml version="1.0"?>
2 <tool id="sequence_content_trimmer" version="0.2.1" name="Sequence Content Trimmer"> 2 <tool id="sequence_content_trimmer" version="0.2.2" name="Sequence Content Trimmer">
3 <description>trim reads based on certain bases</description> 3 <description>trim reads based on certain bases</description>
4 <command detect_errors="exit_code"><![CDATA[ 4 <command detect_errors="exit_code"><![CDATA[
5 #if $paired.is_paired and (('fasta' in $input1.extension and 'fastq' in $input2.extension) or \ 5 #if $paired.is_paired and (('fasta' in $input1.extension and 'fastq' in $input2.extension) or \
6 ('fastq' in $input1.extension and 'fasta' in $input2.extension)) 6 ('fastq' in $input1.extension and 'fasta' in $input2.extension))
7 echo 'Both input files must be either fastq or fasta (no mixing the two).' >&2 7 echo 'Both input files must be either fastq or fasta (no mixing the two).' >&2
15 #elif $input1.extension == 'fasta' 15 #elif $input1.extension == 'fasta'
16 -f fasta 16 -f fasta
17 #else 17 #else
18 -f $input1.extension 18 -f $input1.extension
19 #end if 19 #end if
20 -b $bases -t $thres -w $win_len $invert 20 -b '$bases' -t $thres -w $win_len $invert
21 #if $min_len.has_min_len: 21 #if $min_len.has_min_len:
22 -m $min_len.value 22 -m $min_len.value
23 #end if 23 #end if
24 #if not $paired.is_paired: 24 #if not $paired.is_paired:
25 > $output1 25 > $output1