# HG changeset patch # User Daniel Blankenberg # Date 1390234142 18000 # Node ID 424d4983483074c0c4e916ed2f27805ee5b4d3c6 # Parent 5543c3d33e26af49a29f7a724a249114f3df6fc2 Fix issue reported by Nicola Soranzo: https://trello.com/c/GvypU9T7. Put quotes around filenames. diff -r 5543c3d33e26 -r 424d49834830 cuffmerge_wrapper.xml --- a/cuffmerge_wrapper.xml Thu Jan 16 13:14:19 2014 -0500 +++ b/cuffmerge_wrapper.xml Mon Jan 20 11:09:02 2014 -0500 @@ -11,26 +11,26 @@ ## Use annotation reference? #if $annotation.use_ref_annotation == "Yes": - -g $annotation.reference_annotation + -g "${annotation.reference_annotation}" #end if ## Use sequence data? #if $seq_data.use_seq_data == "Yes": - -s + -s #if $seq_data.seq_source.index_source == "history": - --ref_file=$seq_data.seq_source.ref_file + --ref_file="${seq_data.seq_source.ref_file}" #else: - --index=${bias_correction.seq_source.index.fields.path} + --index="${seq_data.seq_source.index.fields.path}" #end if #end if ## Outputs. - --merged-transcripts=${merged_transcripts} + --merged-transcripts="${merged_transcripts}" ## Inputs. - ${first_input} + "${first_input}" #for $input_file in $input_files: - ${input_file.additional_input} + "${input_file.additional_input}" #end for