From e23ec503af1ea69d2723d320e39c4a82f18d7e40 Mon Sep 17 00:00:00 2001 From: Kate Date: Fri, 16 Oct 2020 15:22:01 -0700 Subject: [PATCH] Update quickStart.md Don't think the -j option is needed here. From the tar manual: "-j, --bzip, --bzip2, --bunzip2 (c mode only) Compress the resulting archive with bzip2(1). In extract or list modes, this option is ignored. Note that, unlike other tar implementations, this implementation recognizes bzip2 compression automatically when reading archives." --- docs/userGuide/quickStart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/userGuide/quickStart.md b/docs/userGuide/quickStart.md index 5f174854..65daab05 100644 --- a/docs/userGuide/quickStart.md +++ b/docs/userGuide/quickStart.md @@ -15,7 +15,7 @@ the demo on the strelka 2.9.2 binary distribution could be accomplished as follo # download strelka binary wget https://github.com/Illumina/strelka/releases/download/v2.9.2/strelka-2.9.2.centos6_x86_64.tar.bz2 # decompress -tar xvjf strelka-2.9.2.centos6_x86_64.tar.bz2 +tar xvf strelka-2.9.2.centos6_x86_64.tar.bz2 # run demo to check successful installation bash strelka-2.9.2.centos6_x86_64/bin/runStrelkaSomaticWorkflowDemo.bash bash strelka-2.9.2.centos6_x86_64/bin/runStrelkaGermlineWorkflowDemo.bash