# HG changeset patch # User simon-gladman # Date 1405013093 14400 # Node ID 76d1aebc44bfaacd4dea1c1f6f0865fd9c95cc67 # Parent 9db0c1c78236269106fb6214ceb06c7359fd2517 Uploaded: added dataset collection support for paired end trimmomatic diff -r 9db0c1c78236 -r 76d1aebc44bf trimmomatic.xml --- a/trimmomatic.xml Thu Jul 10 12:21:33 2014 -0400 +++ b/trimmomatic.xml Thu Jul 10 13:24:53 2014 -0400 @@ -8,10 +8,16 @@ trimmomatic_wrapper.pl paired ${paired.is_paired} - fwdfile ${paired.forwards_file} - #if $paired.is_paired: + #if $paired.is_paired == "single": + fwdfile ${paired.forwards_file} + #end if + #if $paired.is_paired == "paired": + fwdfile ${paired.forwards_file} revfile ${paired.reverse_file} #end if + #if $paired.is_paired == "collection": + fwdfile ${collection_data.forward} + revfile ${collection_data.reverse} phred $phred cutadapt ${adapt.adapters} #if $adapt.adapters: @@ -59,7 +65,12 @@ - + + + + + + @@ -67,6 +78,9 @@ + + + @@ -140,10 +154,10 @@ - (paired['is_paired']) + (paired['is_paired']=="single") - (paired['is_paired']) + (paired['is_paired'] == "paired" or paired['is_paired'] == "collection")