Skip to content

Commit 33cbda2

Browse files
authored
docs: confirmed support for bwa-mem2 and minimap2 (#9)
* docs: confirmed support for bwa-mem2 and minimap2 * chore: update repositories for build
1 parent db7a512 commit 33cbda2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Disambiguation of aligned reads is made per-template and information across prim
2626
All templates which are positively assigned to a single source reference are written to a reference-specific output BAM file.
2727
Any templates with ambiguous reference assignment are written to an ambiguous input-specific output BAM file.
2828

29-
Only BAMs produced from the Burrows-Wheeler Aligner (bwa) or STAR are currently supported.
29+
Only BAMs produced from bwa, bwa-mem2, minimap2, or STAR are known to be supported.
3030
Input BAMs of arbitrary sort order are accepted, however, an internal sort to queryname will be performed unless the BAM is already in queryname sort order.
3131
All output BAM files will be written in the same sort order as the input BAM files.
3232
Although paired-end reads will give the most discriminatory power for disambiguation of short-read sequencing data, this tool accepts paired, single-end (fragment), and mixed pairing input data.

build.sc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ object neodisambiguate extends ScalaModule with PublishModule with ScoverageModu
5656
}
5757

5858
override def ivyDeps = Agg(
59-
ivy"com.fulcrumgenomics::commons::1.4.0",
60-
ivy"com.fulcrumgenomics::fgbio::2.3.0".excludeOrg(htsjdkAndPicardExcludes: _*),
59+
ivy"com.fulcrumgenomics::commons::1.6.0",
60+
ivy"com.fulcrumgenomics::fgbio::3.0.0".excludeOrg(htsjdkAndPicardExcludes: _*),
6161
ivy"org.rogach::scallop::5.1.0",
6262
ivy"org.slf4j:slf4j-nop:1.7.6", // For peace and quiet: https://www.slf4j.org/codes.html#StaticLoggerBinder
6363
)

neodisambiguate/src/io/cvbio/neodisambiguate/Disambiguate.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ object Disambiguate {
107107
|reference assignment are written to an ambiguous input-specific output BAM
108108
|file.
109109
|
110-
|Only BAMs produced from the Burrows-Wheeler Aligner (bwa) or STAR are currently
110+
|Only BAMs produced from bwa, bwa-mem2, minimap2, or STAR are known to be
111111
|supported. Input BAMs of arbitrary sort order are accepted, however, an
112112
|internal sort to queryname will be performed unless the BAM is already in
113113
|queryname sort order. All output BAM files will be written in the same sort

0 commit comments

Comments
 (0)