Examples of ReviewedGATKException


Examples of org.broadinstitute.gatk.utils.exceptions.ReviewedGATKException

    public static SecureRandom createRandomnessSource ( String randAlgorithm ) {
        try {
            return SecureRandom.getInstance(randAlgorithm);
        }
        catch ( NoSuchAlgorithmException e ) {
            throw new ReviewedGATKException(String.format("Could not find an implementation of the requested random-number generation algorithm %s", randAlgorithm), e);
        }
    }
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.