Science Score: 75.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
✓DOI references
Found 3 DOI reference(s) in README -
✓Academic publication links
Links to: zenodo.org -
○Academic email domains
-
✓Institutional organization owner
Organization mics-lab has institutional domain (www.mics.centralesupelec.fr) -
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (9.8%) to scientific vocabulary
Keywords
Repository
Python Eplet Load Calculator
Basic Info
Statistics
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
- Releases: 18
Topics
Metadata Files
README.md
PELC (Python Eplet Load Calculator)
Overview
PELC is a Python package designed to calculate efficiently the HLA Eplet Load (based on the
EpRegistry database) between donors and recipients by loading in a pandas.DataFrame
in eplet_comparison.compute_epletic_load the recipients' and donors' typings. See minimal reproducible example for
more details.
Getting started
Install from PyPI (recommended)
To use pelc, run pip install pelc in your terminal.
Usage
a. Comparing two alleles
Here is a minimal example of how to use pelc to compare two alleles:
```py
from pelc.simplecomparison import simplecomparison
simplecomparison(
"A68:01",
"A68:02",
"output", # file will be saved as output.csv in the current directory
verifiedonly=False, # if True, only verified eplets will be considered, otherwise all eplets will be considered
interlocus2=True # doesn't matter for class I alleles
)
``
In theoutput.csv` file created in the current directory, you will find two rows: "In A*68:02 but not in
A*68:01" and "In A*68:01 but not in A*68:02".
b. Batch mode
Here is a minimal example with the file Template.xlsx (click to download): ```py import pandas as pd
from pelc import batchepletcomp, batchepletcompaux, outputtype
if name == "main": input_path: str = "Template.xlsx"
output_path: str = "MyOutput"
input_df: pd.DataFrame = pd.read_excel(
input_path,
sheet_name="My Sheet",
index_col=0,
)
donordf: pd.DataFrame
recipientdf: pd.DataFrame
donordf, recipientdf = batch_eplet_comp_aux.split_dataframe(input_df)
batch_eplet_comp.compute_epletic_load(
donordf,
recipientdf,
output_path,
output_type.OutputType.DETAILS_AND_COUNT,
class_i=True, # Compute class I eplets comparison?
class_ii=True, # Compute class II eplets comparison?
verified_only=False, # How should the epletic charge be computed? Verified eplets only? Or all eplets?
exclude=None, # list of indices to exclude
interlocus2=True # whether or not to take into account interlocus eplets for HLA of class II
)
``
Note that if a typing is unknown, one can useA,B, ...,DPB1` as the allele name for *both** recipients and
donors. If the allele is unknown for only of the two individuals, it is necessary to use A*, B*, ..., DPB1* for
both individuals otherwise the eplet mismatch computation will not be performed for this donor / recipient pair.
Advanced usage:
a. Not taking into account all loci (if they are not typed for example)
If one wants to determine the eplet mismatches between a donor and a recipient but without taking into account
a certain locus, one can use A*, B*, ..., DPB1* as the allele name for both recipients and donors on this locus
and the eplet mismatch computation will only take into account the loci filled in.
b. Not creating a file but generating a pandas.DataFrame
If one wants to generate a pandas.DataFrame directly, the output_path argument of simple_comparison can be
set to None. The pandas.DataFrame will be returned by the function. Same goes for compute_epletic_load.
Exit codes:
- 55: an eplet did not match the regular expression '^\d+' (ABC, DR, DQ or DP) and it also did not match the regular
expression '^.[PQR]*(\d+)' (interlocus2) either.
Unit tests
Tested on Python 3.10.6 (pelc0.5.2) & Python 3.11.1 (pelc0.5.2) & Python 3.12.5 (pelc0.5.4.4).
```
platform win32 -- Python 3.10.6, pytest-7.4.0, pluggy-1.2.0
plugins: mypy-0.10.3
collected 39 items
unittestsmypy.py .. [ 5%] unittestssimple.py . [ 7%] pelc_init.py . [ 10%] pelc_inputsanitycheck.py . [ 12%] pelc_openepregistrydatabases.py . [ 15%] pelc_unexpectedalleles.py . [ 17%] pelc\batchepletcomp.py . [ 20%] pelc\batchepletcompaux.py . [ 23%] pelc\outputtype.py . [ 25%] pelc\simplecomparison.py . [ 28%] tests_init_.py . [ 30%] tests\baseloadingfortests.py . [ 33%] tests\testepletmismatches.py ......... [ 56%] tests\testextractkeytorankepletes.py .. [ 61%] tests\testisvalidallele.py .. [ 66%] tests\testonlyonechromosome.py .. [ 71%] tests\testpelc.py .. [ 76%] tests\testsamelocus.py .. [ 82%] tests\testsimplecomparison.py ..... [ 94%] tests\testunexpectedalleles.py .. [100%] ==================================== mypy =====================================
Success: no issues found in 20 source files ============================= 39 passed in 34.42s ============================= ```
``` platform win32 -- Python 3.11.1, pytest-7.2.2, pluggy-1.0.0 plugins: anyio-3.6.2, mypy-0.10.3 collected 39 items
unittestsmypy.py .. [ 5%] unittestssimple.py . [ 7%] pelc_init.py . [ 10%] pelc_inputsanitycheck.py . [ 12%] pelc_openepregistrydatabases.py . [ 15%] pelc_unexpectedalleles.py . [ 17%] pelc\batchepletcomp.py . [ 20%] pelc\batchepletcompaux.py . [ 23%] pelc\outputtype.py . [ 25%] pelc\simplecomparison.py . [ 28%] tests_init_.py . [ 30%] tests\baseloadingfortests.py . [ 33%] tests\testepletmismatches.py ......... [ 56%] tests\testextractkeytorankepletes.py .. [ 61%] tests\testisvalidallele.py .. [ 66%] tests\testonlyonechromosome.py .. [ 71%] tests\testpelc.py .. [ 76%] tests\testsamelocus.py .. [ 82%] tests\testsimplecomparison.py ..... [ 94%] tests\testunexpectedalleles.py .. [100%] ==================================== mypy =====================================
Success: no issues found in 20 source files ============================= 39 passed in 32.56s ============================= ```
``` ============================= test session starts ============================= platform win32 -- Python 3.12.5, pytest-8.3.4, pluggy-1.5.0 plugins: mypy-0.10.3 collected 50 items
pelc_init.py .. [ 4%] pelc_inputsanitycheck.py . [ 6%] pelc_openepregistrydatabases.py . [ 8%] pelc_unexpectedalleles.py . [ 10%] pelc\batchepletcomp.py . [ 12%] pelc\batchepletcompaux.py . [ 14%] pelc\outputtype.py . [ 16%] pelc\simplecomparison.py . [ 18%] tests_init_.py . [ 20%] tests\baseloadingfortests.py . [ 22%] tests\testconverttoeplets.py ... [ 28%] tests\testepletmismatches.py ............ [ 52%] tests\testextractkeytorankepletes.py .. [ 56%] tests\testisvalidallele.py .. [ 60%] tests\testnullallele.py ... [ 66%] tests\testonlyonechromosome.py .. [ 70%] tests\testpelc.py .. [ 74%] tests\testsamelocus.py .. [ 78%] tests\testsimplecomparison.py ....... [ 92%] tests\testunexpectedalleles.py .. [ 96%] unittestsmypy.py . [ 98%] unittests_simple.py . [100%] ===================================== mypy ====================================
Success: no issues found in 22 source files ============================ 50 passed in 21.88s ============================== ```
About the source code
- Follows PEP8 Style Guidelines.
- All functions are unit-tested with pytest.
- All variables are correctly type-hinted, reviewed with static type checker
mypy. - All functions are documented with docstrings.
Useful links:
Citation
If you use this software, please cite it as below.
- APA: ``` If you use this software, please cite it as below.
Lhotte, R., Clichet, V., Usureau, C. & Taupin, J. (2022). Python Eplet Load Calculator (PELC) package (Version 0.5.4.4) [Computer software]. https://doi.org/10.5281/zenodo.7254809 ```
- BibTeX:
@software{lhotte_romain_2022_7526198, author = {Lhotte, Romain and Clichet, Valentin and Usureau, Cédric and Taupin, Jean-Luc}, title = {Python Eplet Load Calculator}, month = oct, year = 2022, publisher = {Zenodo}, version = {0.5.4.4}, doi = {10.5281/zenodo.7526198}, }
Owner
- Name: MICS-Lab
- Login: MICS-Lab
- Kind: organization
- Location: France
- Website: http://www.mics.centralesupelec.fr/
- Repositories: 7
- Profile: https://github.com/MICS-Lab
Research laboratory in Mathematics and Computer Science at CentraleSupélec.
Citation (CITATION.cff)
cff-version: 1.2.0
message: "If you use this software, please cite it as below.
Lhotte, R., Clichet, V., Usureau, C. & Taupin, J. (2022). Python Eplet Load Calculator (PELC) package
(Version 0.5.4.4) [Computer software]. https://doi.org/10.5281/zenodo.7254809"
authors:
- family-names: Lhotte
given-names: Romain
orcid: https://orcid.org/0000-0002-6131-5415
- family-names: Clichet
given-names: Valentin
- family-names: Usureau
given-names: Cédric
- family-names: Taupin
given-names: Jean-Luc
orcid: https://orcid.org/0000-0002-5766-046X
title: Python Eplet Load Calculator (PELC) package
version: 0.5.4.4
doi: 10.5281/zenodo.7254809
link: https://github.com/MICS-Lab/pelc
date-released: 2022-10-26
GitHub Events
Total
- Create event: 1
- Release event: 1
- Issues event: 2
- Watch event: 1
- Issue comment event: 1
- Push event: 12
Last Year
- Create event: 1
- Release event: 1
- Issues event: 2
- Watch event: 1
- Issue comment event: 1
- Push event: 12
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 1
- Total pull requests: 0
- Average time to close issues: less than a minute
- Average time to close pull requests: N/A
- Total issue authors: 1
- Total pull request authors: 0
- Average comments per issue: 1.0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 1
- Pull requests: 0
- Average time to close issues: less than a minute
- Average time to close pull requests: N/A
- Issue authors: 1
- Pull request authors: 0
- Average comments per issue: 1.0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- RL-SiLho (1)
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 1
-
Total downloads:
- pypi 76 last-month
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 15
- Total maintainers: 1
pypi.org: pelc
Python Eplet Load Calculator
- Documentation: https://pelc.readthedocs.io/
-
Latest release: 0.5.4
published over 2 years ago
Rankings
Maintainers (1)
Dependencies
- attrs 22.1.0 develop
- colorama 0.4.6 develop
- exceptiongroup 1.0.0rc9 develop
- filelock 3.8.0 develop
- iniconfig 1.1.1 develop
- mypy 0.982 develop
- mypy-extensions 0.4.3 develop
- packaging 21.3 develop
- pluggy 1.0.0 develop
- pyparsing 3.0.9 develop
- pytest 7.2.0 develop
- pytest-mypy 0.10.0 develop
- tomli 2.0.1 develop
- typing-extensions 4.4.0 develop
- et-xmlfile 1.1.0
- numpy 1.23.4
- openpyxl 3.0.10
- pandas 1.5.1
- python-dateutil 2.8.2
- pytz 2022.5
- six 1.16.0
- pytest ^7.2.0 develop
- pytest-mypy ^0.10.0 develop
- openpyxl ^3.0.10
- pandas ^1.5.1
- python ^3.10