Skip to content

Commit d20cfb9

Browse files
committed
release version 1.2.0-beta08
1 parent 5be3d70 commit d20cfb9

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# X-Mapper: a fast, accurate aligner for genomic sequences
22

3-
Download the latest release version here: https://github.com/mathjeff/Mapper/releases/download/1.2.0-beta07/x-mapper-1.2.0-beta07.jar
3+
Download the latest release version here: https://github.com/mathjeff/Mapper/releases/download/1.2.0-beta08/x-mapper-1.2.0-beta08.jar
44

55
Read about the algorithm, plus benchmarking and application in the publication here: https://genomebiology.biomedcentral.com/articles/10.1186/s13059-024-03473-7
66

src/main/java/mapper/Main.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ public static void main(String[] args) throws IllegalArgumentException, FileNotF
375375
if (queries.size() < 1) {
376376
usageError("--queries or --paired-queries is required");
377377
}
378-
if (outVcfPath == null && outSamPath == null && outRefsMapCountPath == null && outUnalignedPath == null && outMutationsPath == null || allowNoOutput) {
378+
if (outVcfPath == null && outSamPath == null && outRefsMapCountPath == null && outUnalignedPath == null && outMutationsPath == null && !allowNoOutput) {
379379
usageError("No output specified. Try --out-vcf <output path>, or if you really don't want to generate an output file, --no-output");
380380
}
381381
alignmentLogger = new Logger(outputWriter, 1, alignmentVerbosity);

0 commit comments

Comments
 (0)