Skip to content

Commit a965517

Browse files
committed
Bugfix GenomicsDBImport
1 parent 4e17954 commit a965517

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/run/bampostprocessing/MarkDuplicatesWithMateCigarStep.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public Provider()
3636
{
3737
super("MarkDuplicatesWithMateCigarStep", "Mark Duplicates With Mate", "Picard", "This runs Picard tools MarkDuplicatesWithMateCigarStep command in order to mark and/or remove duplicate reads. Unlike the original MarkDuplicates, this uses paired read information to more accurately detect true duplicates. Please note this can have implications for downstream analysis, because reads marked as duplicates are frequently omitted. This is often desired, but can be a problem for sequencing of PCR products.", Arrays.asList(
3838
ToolParameterDescriptor.createCommandLineParam(CommandLineParam.create("REMOVE_DUPLICATES"), "removeDuplicates", "Remove Duplicates", "If selected, duplicate reads will be removed, as opposed to flagged as duplicates.", "checkbox", null, null),
39-
ToolParameterDescriptor.createCommandLineParam(CommandLineParam.create("MINIMUM_DISTANCE"), "minimumDistance", "Minimum Distance", "The minimum distance to buffer records to account for clipping on the 5' end of the records.", "ldk-integerfield", null, null)
39+
ToolParameterDescriptor.createCommandLineParam(CommandLineParam.create("MINIMUM_DISTANCE"), "minimumDistance", "Minimum Distance", "The minimum distance to buffer records to account for clipping on the 5' end of the records.", "ldk-integerfield", null, 150)
4040
), null, "http://picard.sourceforge.net/command-line-overview.shtml");
4141
}
4242

SequenceAnalysis/src/org/labkey/sequenceanalysis/run/util/AbstractGenomicsDBImportHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ public void processFilesRemote(List<SequenceOutputFile> inputFiles, JobContext c
454454

455455
Set<File> toDelete = new HashSet<>();
456456
File doneFile = new File(destinationWorkspaceFolder, "genomicsdb.done");
457-
File startedFile = new File(destinationWorkspaceFolder, "genomicsdb.started");
457+
File startedFile = new File(destinationWorkspaceFolder.getParentFile(), "genomicsdb.started");
458458
boolean genomicsDbCompleted = doneFile.exists();
459459
boolean genomicsDbStarted = startedFile.exists();
460460
ctx.getFileManager().addIntermediateFile(doneFile);

0 commit comments

Comments
 (0)