Package com.compomics.mascotdatfile.util.mascot

Examples of com.compomics.mascotdatfile.util.mascot.Query


      int numberOfQueries = mdf.getNumberOfQueries();

      for (int i = 1; i <= numberOfQueries; i++) {
        PeptideHit pepHit = queryPeptideMap.getPeptideHitOfOneQuery(i);
        if (pepHit != null) {
          Query q = mdf.getQuery(i);
          String title = q.getTitle();
          String[] tokens = title.split(" ");
          int rowId = Integer.parseInt(tokens[1]);
          MascotPeakIdentity mpid = new MascotPeakIdentity(pepHit);
          pp.getRows()[rowId].addPeakIdentity(mpid, true);
        }
View Full Code Here

TOP

Related Classes of com.compomics.mascotdatfile.util.mascot.Query

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.