Skip to content

Commit

Permalink
quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
TomHarrop committed Nov 2, 2023
1 parent 271a6b2 commit 8d5a33b
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions tools/repeatexplorer2/repex_full_clustering.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,34 +13,34 @@
&&
## output will go here
mkdir -p "${ReportFile.extra_files_path}"
mkdir -p '${ReportFile.extra_files_path}'
&&
/repex_tarean/seqclust
--cpu \${GALAXY_SLOTS:-1}
--max_memory \${GALAXY_MEMORY_KB}
"${paired}"
'${paired}'
#if $sample:
--sample "${sample}"
--sample '${sample}'
#end if
--taxon "${taxon}"
--output_dir="${ReportFile.extra_files_path}"
--taxon '${taxon}'
--output_dir='${ReportFile.extra_files_path}'
#if $advanced.mincl:
--mincl "${advanced.mincl}"
--mincl '${advanced.mincl}'
#end if
--assembly_min "${advanced.assembly_min}"
--assembly_min '${advanced.assembly_min}'
#if $advanced.keep_names:
--keep_names
#end if
"${FastaFile}"
'${FastaFile}'
&&
## archive the output
tar -cvf "${ReportArchive}" --directory="${ReportFile.extra_files_path}" .
tar -cvf '${ReportArchive}' --directory='${ReportFile.extra_files_path}' .
&&
## pick up the html index
cp "${ReportFile.extra_files_path}/index.html" ./index.html
cp '${ReportFile.extra_files_path}/index.html' ./index.html
]]></command>
<inputs>
Expand Down

0 comments on commit 8d5a33b

Please sign in to comment.