changeset 10:2a59f20b097f draft default tip

Uploaded
author elixir-it
date Wed, 02 Oct 2019 04:31:44 -0400
parents 18481dd04f37
children
files covacs_VariantRecalibrator.xml mv_untar_gatk.sh
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/covacs_VariantRecalibrator.xml	Tue Nov 20 09:42:02 2018 -0500
+++ b/covacs_VariantRecalibrator.xml	Wed Oct 02 04:31:44 2019 -0400
@@ -10,7 +10,7 @@
   <command>
     <![CDATA[
 	### call the .sh to untar the package 
-        sh $__tool_directory__/mv_untar_gatk.sh &&
+	bash $__tool_directory__/mv_untar_gatk.sh &> $log &&
 	
 	##sym link to run GATK
 	 #if $bed_source.bed_source_selector == "history" and $bed_source.bed_history
--- a/mv_untar_gatk.sh	Tue Nov 20 09:42:02 2018 -0500
+++ b/mv_untar_gatk.sh	Wed Oct 02 04:31:44 2019 -0400
@@ -1,7 +1,7 @@
 #!/bin/bash
 #if the .jar file is not present in the conda_prefix the script search the tar.gz in the conda_prefix of the vm
 #and untar the archive
-if [[ ! -f $CONDA_PREFIX/../../GenomeAnalysisTK.jar ]] ; then
+if [ ! -f $CONDA_PREFIX/../../GenomeAnalysisTK.jar ] ; then
         tar -jxvf $CONDA_PREFIX/../../GenomeAnalysis*.tar.bz2 --strip-components=1 -C $CONDA_PREFIX/../../ 2> log_tar
 
 else