Skip to content

Commit

Permalink
adding the scores of proteins to feature file.
Browse files Browse the repository at this point in the history
  • Loading branch information
ypriverol committed Aug 16, 2023
1 parent 08b5849 commit 26d7053
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions python/quantmsio/quantms_io/core/feature.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ class FeatureHandler(ParquetHandler):
metadata={"description": "start positions in the associated proteins"}),
pa.field("protein_end_positions", pa.list_(pa.int32()),
metadata={"description": "end positions in the associated proteins"}),
pa.field("protein_global_qvalue", pa.float64(),
metadata={"description": "global q-value of the associated protein or protein group"}),
pa.field("protein_best_id_score", pa.string(),
metadata={"description": "best identification score of the associated protein or protein group"}),
pa.field("unique", pa.int32(),
metadata={"description": "if the peptide is unique to a particular protein"}),
pa.field("modifications", pa.list_(pa.string()),
Expand Down

0 comments on commit 26d7053

Please sign in to comment.