Skip to content

Commit

Permalink
Removed some printouts for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
smdb21 committed Sep 13, 2016
1 parent 3bf14c2 commit e21a218
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1124,9 +1124,6 @@ private Set<ProteinCluster> createClusters(Map<String, QuantifiedPeptideInterfac
// Map<String, protCluster> <- cluster (key = sequence)
clustersByPeptideSequence.put(sequence1, cluster);
}
if (sequence1.equals("AALCAVHVIR")) {
log.info(cluster.getPeptideSet());
}
// put peptide in cluster
cluster.addIndividualQuantifiedPeptide(peptide1);
// in case of having peptide alignments done
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@ protected boolean filter(PCQProteinNode proteinNode) {
@Override
protected boolean filter(PCQPeptideNode peptideNode) {
final int psmCount = peptideNode.getQuantifiedPSMs().size();
if (peptideNode.getSequence().contains("AALCAVHVIR")) {
log.info(peptideNode);
}
if (psmCount >= minPSMCountPerNode) {
return true;
}
Expand Down

0 comments on commit e21a218

Please sign in to comment.