Skip to content
Snippets Groups Projects
Commit 9b4c7cf7 authored by felmer's avatar felmer
Browse files

LMS-953 bug fixed

SVN: 11496
parent 5362155b
No related branches found
No related tags found
No related merge requests found
......@@ -68,9 +68,9 @@ public interface IProtDAO extends BaseQuery
@Select("insert into peptides (prot_id, sequ_id, charge) values (?{1}, ?{2}, ?{3}) returning id")
public long createPeptide(long proteinID, long sequenceID, int charge);
@Update("insert into modifications (mope_id, moty_id, position, mass) "
@Update("insert into modifications (pept_id, moty_id, position, mass) "
+ "values (?{1}, ?{2}, ?{3}, ?{4})")
public void createModification(long modifiedPeptideID, long modificationTypeID, int position,
public void createModification(long peptideID, long modificationTypeID, int position,
double mass);
@Update("insert into annotations (prot_id, protein_description, ipi_name, refseq_name, "
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment