From 336da21602af528d45f8dc48b3c8c6f1c567b179 Mon Sep 17 00:00:00 2001 From: fubar2 Date: Thu, 5 Sep 2024 15:29:25 +1000 Subject: [PATCH] replace double quotes with singles in command lines --- tools/ncbi_egapx/ncbi_egapx.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/ncbi_egapx/ncbi_egapx.xml b/tools/ncbi_egapx/ncbi_egapx.xml index 74cc19b..62af475 100644 --- a/tools/ncbi_egapx/ncbi_egapx.xml +++ b/tools/ncbi_egapx/ncbi_egapx.xml @@ -21,16 +21,16 @@ #else: echo 'genome: $reference_genome.uri' >> 'egapx.yaml' && #end if - echo "reads:" >> 'egapx.yaml' && + echo 'reads:' >> 'egapx.yaml' && #if str($condrnaseq.rna_type_select) == "history": #for $r in $rnaseq: - echo " - $r" >> 'egapx.yaml' && + echo ' - $r' >> 'egapx.yaml' && #end for #else: #set rs = $rnaseq.split() #set rsplit = [x.strip() for x in $rs] #for $r in $rsplit: - echo " - $r" >> 'egapx.yaml' && + echo ' - $r' >> 'egapx.yaml' && #end for #end if #if len($xtra.strip()) > 0: @@ -39,7 +39,7 @@ echo '$row' >> 'egapx.yaml' && #end for #end if - echo "" >> 'egapx.yaml' && + echo '' >> 'egapx.yaml' && echo "Calculated contents of egapx yaml" && cat 'egapx.yaml' && #end if