Package org.broad.igv.feature

Examples of org.broad.igv.feature.EncodePeakFeature


            for (BasicFeature f : features) {

                float s = f.getScore();
                hasScore = hasScore || !Float.isNaN(s);
                if (isEncodePeak) {
                    EncodePeakFeature pf = (EncodePeakFeature) f;
                    signals.add(pf.getSignal());
                    qvalues.add(pf.getQValue());
                    pvalues.add(pf.getPValue());
                }

                final int length = f.getLength();
                if (length > longest) longest = length;
View Full Code Here

TOP

Related Classes of org.broad.igv.feature.EncodePeakFeature

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.