Skip to content

Commit

Permalink
change the entrapment prefix ENTRAPMENT -> ENTRAP
Browse files Browse the repository at this point in the history
  • Loading branch information
ypriverol committed Jun 15, 2024
1 parent c59a51e commit 044ac38
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion ibaqpy/ibaq/peptide_normalization.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def remove_contaminants_entrapments_decoys(
"""
contaminants = []
contaminants.append("CONTAMINANT")
contaminants.append("ENTRAPMENT")
contaminants.append("ENTRAP")
contaminants.append("DECOY")
cregex = "|".join(contaminants)
return dataset[~dataset[protein_field].str.contains(cregex)]
Expand Down
2 changes: 0 additions & 2 deletions ibaqpy/ibaqpyc.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import click

from ibaqpy.commands.features2peptides import features2parquet
from ibaqpy.commands.compute_tpa import tpa_compute
from ibaqpy.commands.merge_condition_files import merge_condition_generation
Expand All @@ -9,7 +8,6 @@

CONTEXT_SETTINGS = dict(help_option_names=["-h", "--help"])


@click.group(context_settings=CONTEXT_SETTINGS)
@click.version_option(
version=__init__.__version__,
Expand Down

0 comments on commit 044ac38

Please sign in to comment.