Examples of LibraryProtocol


Examples of org.bioinfo.ngs.qc.qualimap.common.LibraryProtocol

        String bamPath = settingsDlg.getBamFilePath();
        String gffPath = settingsDlg.getGtfFilePath();

        ComputeCountsTask computeCountsTask = new ComputeCountsTask(bamPath, gffPath);
        LibraryProtocol p = LibraryProtocol.getProtocolByName(settingsDlg.getProtocol());
        computeCountsTask.setProtocol(p);
        computeCountsTask.setCountingAlgorithm(settingsDlg.getCountingAlgorithm());
        computeCountsTask.addSupportedFeatureType(ComputeCountsTask.EXON_TYPE_ATTR);
        computeCountsTask.setAttrName(ComputeCountsTask.GENE_ID_ATTR);
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.