Skip to content

Commit 892c793

Browse files
committed
Remove -S from fasterq-dump
1 parent 333d25b commit 892c793

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

SequenceAnalysis/api-src/org/labkey/api/sequenceanalysis/run/DockerWrapper.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,8 @@ public void executeWithDocker(List<String> containerArgs, File workDir, Pipeline
109109

110110
writer.println("$DOCKER run --rm=true \\");
111111
writer.println("\t--group-add keep-groups \\");
112+
writer.println("\t--transient-store \\");
113+
112114
if (_useLocalContainerStorage)
113115
{
114116
getLogger().debug("Using local container storage: " + getLocalContainerDir().getPath());

SequenceAnalysis/src/org/labkey/sequenceanalysis/run/RestoreSraDataHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ public Pair<File, File> downloadSra(String dataset, File outDir, boolean expectP
464464
List<String> args = new ArrayList<>();
465465
args.add(getExe().getPath());
466466

467-
args.add("-S");
467+
// NOTE: we probably want the --split-3 behavior, which is the default for fasterq-dump
468468
args.add("--include-technical");
469469

470470
Integer threads = SequencePipelineService.get().getMaxThreads(getLogger());

0 commit comments

Comments
 (0)