# HG changeset patch # User nick # Date 1653694063 0 # Node ID d8b86dc67f84212a9d739efaf4adf8d8395aa393 # Parent a8fd651dcbd9f352e09576e99407fbbbe113bd76 "planemo upload commit 8e52aac4afce4ab7c4d244e2b70f205f70c16749-dirty" diff -r a8fd651dcbd9 -r d8b86dc67f84 trimmer.xml --- a/trimmer.xml Fri May 27 22:46:30 2022 +0000 +++ b/trimmer.xml Fri May 27 23:27:43 2022 +0000 @@ -1,28 +1,28 @@ - + trim reads based on certain bases &2 #else - trimmer.py $input1 + python '$__tool_directory__/trimmer.py' '$input1' #if $paired.is_paired: - $input2 $output1 $output2 + '$input2' '$output1' '$output2' #end if #if $input1.extension in ('fastq', 'fastqsanger', 'fastqillumina', 'fastqsolexa') -f fastq #elif $input1.extension == 'fasta' -f fasta #else - -f $input1.extension + -f '$input1.extension' #end if - -b '$bases' -t $thres -w $win_len $invert + -b '$bases' -t '$thres' -w '$win_len' $invert #if $min_len.has_min_len: - -m $min_len.value + -m '$min_len.value' #end if #if not $paired.is_paired: - > $output1 + > '$output1' #end if #end if ]]>