Skip to content

Commit

Permalink
add --no-same-owner to tar -x in WDL tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkinsc committed Aug 21, 2018
1 parent 7eea977 commit 8e70f50
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pipes/WDL/workflows/tasks/tasks_assembly.wdl
Expand Up @@ -184,7 +184,7 @@ task refine {
# prep GATK
mkdir gatk
if [[ ${gatk_jar} == *.tar.bz2 ]]; then
tar -xjvf ${gatk_jar} -C gatk
tar -xjvf ${gatk_jar} -C gatk --no-same-owner
else
ln -s ${gatk_jar} gatk/GenomeAnalysisTK.jar
fi
Expand Down Expand Up @@ -255,7 +255,7 @@ task refine_2x_and_plot {
# prep GATK
mkdir gatk
if [[ ${gatk_jar} == *.tar.bz2 ]]; then
tar -xjvf ${gatk_jar} -C gatk
tar -xjvf ${gatk_jar} -C gatk --no-same-owner
else
ln -s ${gatk_jar} gatk/GenomeAnalysisTK.jar
fi
Expand Down
2 changes: 1 addition & 1 deletion pipes/WDL/workflows/tasks/tasks_reports.wdl
Expand Up @@ -19,7 +19,7 @@ task plot_coverage {
# prep GATK
mkdir gatk
if [[ ${gatk_jar} == *.tar.bz2 ]]; then
tar -xjvf ${gatk_jar} -C gatk
tar -xjvf ${gatk_jar} -C gatk --no-same-owner
else
ln -s ${gatk_jar} gatk/GenomeAnalysisTK.jar
fi
Expand Down

0 comments on commit 8e70f50

Please sign in to comment.