@@ -641,27 +641,27 @@ public void SetPepXMLPath(){
641
641
public void ParsePepXML (DBSearchParam searchPara , LCMSID refID ) throws ParserConfigurationException , SAXException , IOException , XmlPullParserException , ClassNotFoundException , InterruptedException {
642
642
643
643
SetPepXMLPath ();
644
- IDsummary = new LCMSID (FilenameUtils .getFullPath (Filename ) + FilenameUtils .getBaseName (Filename ),searchPara .DecoyPrefix ,searchPara .FastaPath );
644
+ IDsummary = new LCMSID (FilenameUtils .getFullPath (Filename ) + FilenameUtils .getBaseName (Filename ), searchPara .DecoyPrefix , searchPara .FastaPath );
645
645
for (String pepxml : iProphPepXMLs ) {
646
- LCMSID pepxmlid = new LCMSID (FilenameUtils .getFullPath (Filename ) + FilenameUtils .getBaseName (Filename ),searchPara .DecoyPrefix ,searchPara .FastaPath );
646
+ LCMSID pepxmlid = new LCMSID (FilenameUtils .getFullPath (Filename ) + FilenameUtils .getBaseName (Filename ), searchPara .DecoyPrefix , searchPara .FastaPath );
647
647
PepXMLParser pepxmlparser = new PepXMLParser (pepxmlid , pepxml , 0f );
648
648
if (refID == null ) {
649
649
pepxmlid .FilterByPepDecoyFDR (searchPara .DecoyPrefix , searchPara .PepFDR );
650
650
}
651
651
Logger .getRootLogger ().info ("No. of peptide ions:" + pepxmlid .GetPepIonList ().size () + "; Peptide level threshold: " + pepxmlid .PepProbThreshold );
652
652
for (PepIonID pepID : pepxmlid .GetPepIonList ().values ()) {
653
653
if (refID != null ) {
654
- if (refID .GetPepIonList ().containsKey (pepID .GetKey ())){
654
+ if (refID .GetPepIonList ().containsKey (pepID .GetKey ())) {
655
655
IDsummary .AddPeptideID (pepID );
656
- }
656
+ }
657
657
} else {
658
658
IDsummary .AddPeptideID (pepID );
659
659
}
660
660
}
661
661
}
662
662
IDsummary .ReMapProPep ();
663
663
Logger .getRootLogger ().info ("Total number of peptide ions:" + IDsummary .GetPepIonList ().size ());
664
- CheckPSMRT ();
664
+ CheckPSMRT ();
665
665
if (MS1FeatureMap != null ) {
666
666
this .MS1FeatureMap .IDsummary = IDsummary ;
667
667
}
0 commit comments