Skip to content

Commit

Permalink
Fix search_space_test
Browse files Browse the repository at this point in the history
  • Loading branch information
RalfG committed May 8, 2024
1 parent 7ac939c commit 5d1f11a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/test_search_space.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,26 @@

OXIDATION = search_space.ModificationConfig(
label="Oxidation",
amino_acids="M",
amino_acid="M",
)
CARBAMIDOMETHYL = search_space.ModificationConfig(
label="Carbamidomethyl",
amino_acids="C",
amino_acid="C",
fixed=True,
)
PYROGLU = search_space.ModificationConfig(
label="Glu->pyro-Glu",
amino_acids="E",
amino_acid="E",
peptide_n_term=True,
)
ACETYL = search_space.ModificationConfig(
label="Acetyl",
amino_acids=None,
amino_acid=None,
protein_n_term=True,
)
PHOSPHO = search_space.ModificationConfig(
label="Phospho",
amino_acids="T",
amino_acid="T",
fixed=False,
)

Expand Down

0 comments on commit 5d1f11a

Please sign in to comment.