@Deprecated public class SAMRecordUtil extends Object
SAMRecord.reverseComplement() instead, which defaults to making a copy of attributes for reverse
complement rather than changing them in-place.| Modifier and Type | Field and Description |
|---|---|
static List<String> |
TAGS_TO_REVERSE
Deprecated.
|
static List<String> |
TAGS_TO_REVERSE_COMPLEMENT
Deprecated.
|
| Constructor and Description |
|---|
SAMRecordUtil()
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static void |
reverseComplement(SAMRecord rec)
Deprecated.
Reverse-complement bases and reverse quality scores along with known optional attributes that
need the same treatment.
|
static void |
reverseComplement(SAMRecord rec,
boolean inplace)
Deprecated.
Reverse-complement bases and reverse quality scores along with known optional attributes that
need the same treatment.
|
static void |
reverseComplement(SAMRecord rec,
Collection<String> tagsToRevcomp,
Collection<String> tagsToReverse,
boolean inplace)
Deprecated.
Reverse complement bases and reverse quality scores.
|
public static void reverseComplement(SAMRecord rec)
reverseComplement(SAMRecord, boolean).
See TAGS_TO_REVERSE_COMPLEMENT TAGS_TO_REVERSE
for the default set of tags that are handled.public static void reverseComplement(SAMRecord rec, boolean inplace)
TAGS_TO_REVERSE_COMPLEMENT TAGS_TO_REVERSE
for the default set of tags that are handled.rec - Record to reverse complement.inplace - Setting this to false will clone all attributes, bases and qualities before changing the values.public static void reverseComplement(SAMRecord rec, Collection<String> tagsToRevcomp, Collection<String> tagsToReverse, boolean inplace)