public enum ClippingRepresentation extends java.lang.Enum<ClippingRepresentation>
Enum Constant and Description |
---|
HARDCLIP_BASES
WARNING: THIS OPTION IS STILL UNDER DEVELOPMENT AND IS NOT SUPPORTED.
|
REVERT_SOFTCLIPPED_BASES
Turn all soft-clipped bases into matches
|
SOFTCLIP_BASES
Change the read's cigar string to soft clip (S, see sam-spec) away the bases.
|
WRITE_NS
Clipped bases are changed to Ns
|
WRITE_NS_Q0S
Clipped bases are change to have both an N base and a Q0 quality score
|
WRITE_Q0S
Clipped bases are changed to have Q0 quality score
|
Modifier and Type | Method and Description |
---|---|
static ClippingRepresentation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ClippingRepresentation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClippingRepresentation WRITE_NS
public static final ClippingRepresentation WRITE_Q0S
public static final ClippingRepresentation WRITE_NS_Q0S
public static final ClippingRepresentation SOFTCLIP_BASES
public static final ClippingRepresentation HARDCLIP_BASES
public static final ClippingRepresentation REVERT_SOFTCLIPPED_BASES
public static ClippingRepresentation[] values()
for (ClippingRepresentation c : ClippingRepresentation.values()) System.out.println(c);
public static ClippingRepresentation valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null