Examples of TagValueAndUnsignedArrayFlag


Examples of net.sf.samtools.TagValueAndUnsignedArrayFlag

      return byteBuffer.getFloat();
    case 'H':
      final String hexRep = readNullTerminatedString(byteBuffer);
      return StringUtil.hexStringToBytes(hexRep);
    case 'B':
      final TagValueAndUnsignedArrayFlag valueAndFlag = readArray(
          byteBuffer, validationStringency);
      return valueAndFlag.value ;
    default:
      throw new SAMFormatException("Unrecognized tag type: "
          + (char) tagType);
View Full Code Here

Examples of net.sf.samtools.TagValueAndUnsignedArrayFlag

    default:
      throw new SAMFormatException("Unrecognized tag array type: "
          + (char) arrayType);
    }
    return new TagValueAndUnsignedArrayFlag(value, isUnsigned);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.