Skip to content

Commit

Permalink
Remove -S from fasterq-dump
Browse files Browse the repository at this point in the history
  • Loading branch information
bbimber committed Jan 13, 2025
1 parent 333d25b commit 892c793
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,8 @@ public void executeWithDocker(List<String> containerArgs, File workDir, Pipeline

writer.println("$DOCKER run --rm=true \\");
writer.println("\t--group-add keep-groups \\");
writer.println("\t--transient-store \\");

if (_useLocalContainerStorage)
{
getLogger().debug("Using local container storage: " + getLocalContainerDir().getPath());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ public Pair<File, File> downloadSra(String dataset, File outDir, boolean expectP
List<String> args = new ArrayList<>();
args.add(getExe().getPath());

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

Integer threads = SequencePipelineService.get().getMaxThreads(getLogger());
Expand Down

0 comments on commit 892c793

Please sign in to comment.