Package picard.illumina.parser

Source Code of picard.illumina.parser.IlluminaDataProviderFactoryTest$TestFactory

package picard.illumina.parser;


import picard.illumina.parser.readers.BclQualityEvaluationStrategy;

import java.io.File;

public class IlluminaDataProviderFactoryTest {

    class TestFactory extends IlluminaDataProviderFactory{
        public TestFactory(final File basecallDirectory, final int lane, final ReadStructure readStructure, final IlluminaDataType... dataTypes) {
            super(basecallDirectory, lane, readStructure, new BclQualityEvaluationStrategy(BclQualityEvaluationStrategy.ILLUMINA_ALLEGED_MINIMUM_QUALITY), dataTypes);
        }

    }
}
TOP

Related Classes of picard.illumina.parser.IlluminaDataProviderFactoryTest$TestFactory

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.