Package net.sf.samtools.SAMFileReader

Examples of net.sf.samtools.SAMFileReader.ValidationStringency


  private boolean validateCigar(final SAMRecord record,
      final long recordNumber) {
    if (record.getReadUnmappedFlag()) {
      return true;
    }
    final ValidationStringency savedStringency = record
        .getValidationStringency();
    record.setValidationStringency(ValidationStringency.LENIENT);
    final List<SAMValidationError> errors = record
        .validateCigar(recordNumber);
    record.setValidationStringency(savedStringency);
View Full Code Here

TOP

Related Classes of net.sf.samtools.SAMFileReader.ValidationStringency

Copyright © 2018 www.massapicom. 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.