FCCgroup is a Python package for grouping chemicals with three complementary methods:
- Structural pattern matching with SMARTS fingerprints
- Functional list matching against packaged reference lists
- Regex-based grouping from chemical names and formulas
The package is developed under the organization of Food Packaging Forum. Authored by Albert Anguera Sempere and Helene Wiesinger.
- Structural classification using SMARTS fingerprints
- Functional list matching from packaged assets
- Regex-based classification from names and formulas
- Automatic CompTox enrichment when selected methods require missing fields
- Flexible method selection through
GroupingConfig(methods=...) - Optional SMARTS fingerprint subsetting via
GroupingConfig(smarts_fingerprints=...) - Package data bundled under
fccgroup/assets
Install from PyPI:
pip install fccgroupInstall from source:
git clone https://github.com/Food-Packaging-Forum/fccgroup.git
cd fccgroup
pip install -e .Install development dependencies:
pip install -e .[dev]import pandas as pd
from fccgroup import ChemicalGrouper, ColumnMapping, GroupingConfig, GroupingMethod
df = pd.DataFrame(
{
"CASRN": ["74-84-0"],
"Structure": ["CC"],
"Name": ["ethane"],
"IUPAC": ["ethane"],
"Formula": ["C2H6"],
}
)
config = GroupingConfig(
methods=[GroupingMethod.SMARTS, GroupingMethod.REGEX],
column_mapping=ColumnMapping(
cas="CASRN",
smiles="Structure",
name_columns=["Name", "IUPAC"],
formula="Formula",
),
)
grouper = ChemicalGrouper(df=df, grouping_config=config)
results = grouper.group_chemicals(save=False)
# Columns are a MultiIndex: (group_label, column_name)
print(results.columns.tolist())
print(results.head())FCCgroup does not expose a GroupingMode enum. Method selection is configured with GroupingMethod values:
GroupingMethod.SMARTS: structural pattern matchingGroupingMethod.LISTS: functional list matchingGroupingMethod.REGEX: regex-based grouping from names and formulas
Common configurations:
GroupingConfig(methods=[GroupingMethod.SMARTS], column_mapping=...)
GroupingConfig(methods=[GroupingMethod.SMARTS, GroupingMethod.LISTS], column_mapping=...)
GroupingConfig(
methods=[GroupingMethod.SMARTS, GroupingMethod.LISTS, GroupingMethod.REGEX],
column_mapping=...,
)To apply only a subset of the ~400 bundled SMARTS patterns, pass their names to smarts_fingerprints:
GroupingConfig(
methods=[GroupingMethod.SMARTS],
column_mapping=...,
smarts_fingerprints={"Alkanes", "PAH derivatives hydrocarbon"},
)When smarts_fingerprints is None (default), all available patterns are applied.
By default ChemicalGrouper loads assets from the package installation directory. To point it at a different directory:
ChemicalGrouper(df=df, grouping_config=config, assets_path="/path/to/custom/assets")ChemicalGroupermust be initialized with a non-empty pandas DataFrame.ColumnMappingmust provide at least one ofcasorsmiles(the other may beNone).name_columnsandformulaare optional at configuration time, butREGEXgrouping may trigger CompTox enrichment when they are missing.- Input column names can be custom; FCCgroup maps them to canonical internal fields.
- Packaged assets live under
fccgroup/assets. Mapping.xlsxand the files infccgroup/assets/listsare required for LISTS workflow.- CompTox (EPA) is used only when the selected methods require fields that are not already available in the mapped input columns (e.g. SMILES needed for SMARTS but only CAS provided).
- CompTox enrichment requires a valid API key set in the
COMPTOX_API_KEYenvironment variable. - CompTox usage depends on network availability and the EPA CompTox service.
group_chemicals(save=True) returns a pandas DataFrame with a MultiIndex on columns. The first level groups results by method; the second level is the column name.
| Top-level label | Contents |
|---|---|
Identifier |
Internal identifier columns (casId, SMILES) |
Structural patterns |
Chemical groups and per-fingerprint columns (SMARTS method) |
Lists |
Per-list membership columns (LISTS method) |
Regex |
Pattern group columns (REGEX method) |
Example column access:
# Access the SMILES identifier column
results[("Identifier", "SMILES")]
# Access the Chemical groups column
results[("Structural patterns", "Chemical groups")]When save=True (default), results are also written to an Excel file in the current working directory.
FCCgroup currently declares the runtime dependencies described in requirements.txt
If you use FCCgroup in your research, please cite:
@software{fccgroup,
title={FCCgroup: Chemical Grouping and Classification Package},
author={Anguera Sempere, Albert and Wiesinger, Helene},
organization={Food Packaging Forum},
year={2026},
}
Contributions are welcome through pull requests.
For issues, questions, or suggestions, open an issue at https://github.com/Food-Packaging-Forum/fccgroup/issues.
Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0). See LICENSE for details.
This software is provided "as is", without warranties of any kind, express or implied. To the maximum extent permitted by applicable law, Food Packaging Forum and contributors shall not be liable for any direct, indirect, incidental, special, exemplary, or consequential damages arising from the use or misuse of this software.