# HG changeset patch # User yhoogstrate # Date 1422456235 18000 # Node ID f87938c392bff99ba44a90720beea9f057ba75fb # Parent 875f080136b6489a31d42826e5a5dcb623898c56 Hardcoded the png: suffix for gm convert, to ensure conversion to png diff -r 875f080136b6 -r f87938c392bf edgeR_Differential_Gene_Expression.xml --- a/edgeR_Differential_Gene_Expression.xml Wed Jan 28 09:22:54 2015 -0500 +++ b/edgeR_Differential_Gene_Expression.xml Wed Jan 28 09:43:55 2015 -0500 @@ -1,5 +1,5 @@ - + RNA-Seq gene expression analysis using edgeR (R package) @@ -100,49 +100,49 @@ #if $output_MDSplot_logFC: #set $output_MDSplot_logFC_tmp = str($output_MDSplot_logFC)+".png" - gm convert $output_MDSplot_logFC $output_MDSplot_logFC_tmp ; + gm convert $output_MDSplot_logFC png:$output_MDSplot_logFC_tmp ; mv $output_MDSplot_logFC_tmp $output_MDSplot_logFC ; #end if #if $output_MDSplot_bcv: #set $output_MDSplot_bcv_tmp = str($output_MDSplot_bcv)+".png" - gm convert $output_MDSplot_bcv $output_MDSplot_bcv_tmp ; + gm convert $output_MDSplot_bcv png:$output_MDSplot_bcv_tmp ; mv $output_MDSplot_bcv_tmp $output_MDSplot_bcv ; #end if #if $output_BCVplot: #set $output_BCVplot_tmp = str($output_BCVplot)+".png" - gm convert $output_BCVplot $output_BCVplot_tmp ; + gm convert $output_BCVplot png:$output_BCVplot_tmp ; mv $output_BCVplot_tmp $output_BCVplot ; #end if #if $output_MAplot: #set $output_MAplot_tmp = str($output_MAplot)+".png" - gm convert $output_MAplot $output_MAplot_tmp ; + gm convert $output_MAplot png:$output_MAplot_tmp ; mv $output_MAplot_tmp $output_MAplot ; #end if #if $output_PValue_distribution_plot: #set $output_PValue_distribution_plot_tmp = str($output_PValue_distribution_plot)+".png" - gm convert $output_PValue_distribution_plot $output_PValue_distribution_plot_tmp ; + gm convert $output_PValue_distribution_plot png:$output_PValue_distribution_plot_tmp ; mv $output_PValue_distribution_plot_tmp $output_PValue_distribution_plot ; #end if #if $output_hierarchical_clustering_plot: #set $output_hierarchical_clustering_plot_tmp = str($output_hierarchical_clustering_plot)+".png" - gm convert $output_hierarchical_clustering_plot $output_hierarchical_clustering_plot_tmp ; + gm convert $output_hierarchical_clustering_plot png:$output_hierarchical_clustering_plot_tmp ; mv $output_hierarchical_clustering_plot_tmp $output_hierarchical_clustering_plot ; #end if #if $output_heatmap_plot: #set $output_heatmap_plot_tmp = str($output_heatmap_plot)+".png" - gm convert $output_heatmap_plot $output_heatmap_plot_tmp ; + gm convert $output_heatmap_plot png:$output_heatmap_plot_tmp ; mv $output_heatmap_plot_tmp $output_heatmap_plot ; #end if #end if