# HG changeset patch # User devteam # Date 1486510777 18000 # Node ID 25cf1ab351df41c4bf9ee982bc3b76dd60854c42 # Parent 6c7e4034e35404c722770e1e322d6862b0aa1f1f planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffquant commit eb18f691975ef9539b5ebd4f118343c8ad967a1f diff -r 6c7e4034e354 -r 25cf1ab351df cuff_macros.xml --- a/cuff_macros.xml Mon Nov 09 12:06:19 2015 -0500 +++ b/cuff_macros.xml Tue Feb 07 18:39:37 2017 -0500 @@ -1,11 +1,13 @@ 2.2.1 + cufflinks + @@ -26,21 +28,21 @@ - + - + - + - + @@ -48,16 +50,16 @@ #if $in_type.set_in_type in ['BAM', 'CXB'] #for $condition in $in_type.conditions: #set samples = ','.join( [ str( $sample ) for $sample in $condition.samples ] ) - $samples + '$samples' #end for #elif $in_type.set_in_type == 'CONDITION_LIST' #for $sample in $in_type.conditions: - $sample + '$sample' #end for #elif $in_type.set_in_type == 'CONDITION_REPLICATE_LIST' #for $condition_list in $in_type.conditions: #set samples = ','.join( [ str( $sample ) for $sample in $condition_list ] ) - $samples + '$samples' #end for #end if @@ -79,11 +81,11 @@ ## Inputs. #for $input_file in $inputs: - "${input_file}" + '${input_file}' #end for #for $additional_input in $additional_inputs: #for $input_file in $additional_input.additional_inputs: - "${input_file}" + '${input_file}' #end for #end for diff -r 6c7e4034e354 -r 25cf1ab351df cuffquant_wrapper.xml --- a/cuffquant_wrapper.xml Mon Nov 09 12:06:19 2015 -0500 +++ b/cuffquant_wrapper.xml Tue Feb 07 18:39:37 2017 -0500 @@ -1,11 +1,11 @@ Precompute gene expression levels - - cuff_macros.xml + + cuffquant 2>&1 | head -n 1 cuffquant @@ -27,10 +27,10 @@ -b #if $bias_correction.seq_source.index_source == "history": ## Custom genome from history. - $bias_correction.seq_source.ref_file + '$bias_correction.seq_source.ref_file' #else: ## Built-in genome. - "${ bias_correction.seq_source.index.fields.path }" + '${bias_correction.seq_source.index.fields.path}' #end if #end if @@ -42,15 +42,15 @@ --library-type=$advanced_settings.library_type #end if #if $advanced_settings.mask_file: - --mask-file=$advanced_settings.mask_file + --mask-file '$advanced_settings.mask_file' #end if --max-mle-iterations=$advanced_settings.max_mle_iterations --max-bundle-frags=$advanced_settings.max_bundle_frags #end if ## Inputs. - $gtf_input + '$gtf_input' #set samplestring = ','.join( [ str( $sample.sample ) for $sample in $samples ] ) - $samplestring + '$samplestring' - +