Package net.sf.samtools.util

Examples of net.sf.samtools.util.RuntimeIOException


                throw new SAMFormatException("Unrecognized file format: " + strm);
            }
            setValidationStringency(validationStringency);
        }
        catch (IOException e) {
            throw new RuntimeIOException(e);
        }
    }
View Full Code Here


            setValidationStringency(validationStringency);
            mReader.setSAMRecordFactory(this.samRecordFactory);
        }
        catch (IOException e) {
            throw new RuntimeIOException(e);
        }
    }
View Full Code Here


        FeatureFileFormat featureFileFormat = DocumentUtils.guessFeaturesFileFormat(featureFile);

        if (featureFileFormat == FeatureFileFormat.UNKNOWN) {
            throw new RuntimeIOException("Unknown feature file format. Please provide file in GFF/GTF or BED format.");
        }

        if (featureFileFormat == FeatureFileFormat.GTF) {
            // while not interested in GTF-specific information we save some memory by using GFF reader
            featureFileFormat = FeatureFileFormat.GFF;
View Full Code Here

TOP

Related Classes of net.sf.samtools.util.RuntimeIOException

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.