Updated Picard with fix for Doug Voet. Thanks Alec.
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@2015 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
2e4782f202
commit
bae4d3f7ea
|
|
@ -384,7 +384,7 @@ public class GenomeAnalysisEngine {
|
|||
rg_sets.add(groups);
|
||||
|
||||
for (SAMReadGroupRecord g : r.getFileHeader().getReadGroups()) {
|
||||
if (hm.hasGroupIdDuplicates()) { // Check if there were read group clashes with hasGroupIdDuplicates and if so:
|
||||
if (hm.hasReadGroupCollisions()) { // Check if there were read group clashes with hasGroupIdCollisions and if so:
|
||||
// use HeaderMerger to translate original read group id from the reader into the read group id in the
|
||||
// merged stream, and save that remapped read group id to associate it with specific reader
|
||||
groups.add(hm.getReadGroupId(r, g.getReadGroupId()));
|
||||
|
|
|
|||
|
|
@ -235,7 +235,7 @@ public class MergingSamRecordIterator2 implements CloseableIterator<SAMRecord>,
|
|||
final SAMRecord record = iterator.next();
|
||||
addIfNotEmpty(iterator);
|
||||
|
||||
if (this.samHeaderMerger.hasGroupIdDuplicates()) {
|
||||
if (this.samHeaderMerger.hasReadGroupCollisions()) {
|
||||
final String id = (String) record.getAttribute(ReservedTagConstants.READ_GROUP_ID);
|
||||
final String newId = this.samHeaderMerger.getReadGroupId(iterator.getReader(), id);
|
||||
record.setAttribute(ReservedTagConstants.READ_GROUP_ID, newId);
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -1,3 +1,3 @@
|
|||
<ivy-module version="1.0">
|
||||
<info organisation="edu.mit.broad" module="picard-private" revision="1084" status="integration" publication="20091016142400" />
|
||||
<info organisation="edu.mit.broad" module="picard-private" revision="1105" status="integration" publication="20091110205100" />
|
||||
</ivy-module>
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
<ivy-module version="1.0">
|
||||
<info organisation="net.sf" module="picard" revision="1.05.140" status="release" />
|
||||
</ivy-module>
|
||||
Binary file not shown.
|
|
@ -0,0 +1,3 @@
|
|||
<ivy-module version="1.0">
|
||||
<info organisation="net.sf" module="picard" revision="1.07.165" status="release" />
|
||||
</ivy-module>
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
<ivy-module version="1.0">
|
||||
<info organisation="net.sf" module="sam" revision="1.05.140" status="release" />
|
||||
</ivy-module>
|
||||
Binary file not shown.
|
|
@ -0,0 +1,3 @@
|
|||
<ivy-module version="1.0">
|
||||
<info organisation="net.sf" module="sam" revision="1.07.165" status="release" />
|
||||
</ivy-module>
|
||||
Loading…
Reference in New Issue