Skip to content

Commit

Permalink
Fix escaping $ in ParSNP template
Browse files Browse the repository at this point in the history
  • Loading branch information
Nolan Woods committed Mar 13, 2020
1 parent 3b0789f commit a1f5a7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions parsnp/ParSNP.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
</requirements>
<version_command><![CDATA[parsnp -V |& tail -n1]]></version_command>
<command detect_errors="aggressive"><![CDATA[
export MEMORY_LIMIT=`expr ${GALAXY_MEMORY_MB:-0} \* 1000`;
[[ $MEMORY_LIMIT -eq 0 ]] && export MEMORY_LIMIT=;
export MEMORY_LIMIT=`expr \${GALAXY_MEMORY_MB:-0} \\* 1000`;
[[ \$MEMORY_LIMIT -eq 0 ]] && export MEMORY_LIMIT=;
export GENOME_DIR=\$(mktemp -d -p `pwd`)
#for $genome in $genomes
&& ln -sf '$genome'
Expand Down

0 comments on commit a1f5a7f

Please sign in to comment.