@Override public ProteinferPeptide loadPeptide(int pinferId, String peptideSequence) { return peptDao.loadPeptide(pinferId, peptideSequence); }
@Override public int update(GenericProteinferPeptide<?, ?> peptide) { return peptDao.update(peptide); }
@Override public int getUniqueIonCountForRun(int proteinferId) { return peptDao.getUniqueIonCountForRun(proteinferId); }
@Override public int getUniquePeptideSequenceCountForRun(int proteinferId) { return peptDao.getUniquePeptideSequenceCountForRun(proteinferId); }
@Override public List<Integer> getUniquePeptideIdsForProteinferProtein(int pinferProteinId) { return peptDao.getUniquePeptideIdsForProteinferProtein(pinferProteinId); }
@Override public List<Integer> getPeptideIdsForProteinferRun(int proteinferId) { return peptDao.getPeptideIdsForProteinferRun(proteinferId); }
@Override public void delete(int id) { peptDao.delete(id); }