Skip to content

Python package for creating GFE notation from annotated sequences

License

GPL-3.0, GPL-3.0 licenses found

Licenses found

GPL-3.0
LICENSE
GPL-3.0
COPYING
Notifications You must be signed in to change notification settings

nmdp-bioinformatics/py-gfe

Folders and files

NameName
Last commit message
Last commit date

Latest commit

3752a43 · Dec 11, 2023

History

67 Commits
Mar 18, 2021
Nov 12, 2017
Dec 11, 2023
Mar 31, 2021
Aug 8, 2018
Sep 30, 2019
Nov 13, 2019
Nov 13, 2019
Nov 12, 2017
Nov 12, 2017
Mar 31, 2021
Nov 12, 2017
May 15, 2018
Nov 12, 2017
Nov 12, 2017
Aug 27, 2019
Jan 21, 2020
Dec 5, 2023
Dec 11, 2023
Dec 11, 2023
Jul 16, 2018

Repository files navigation

py-gfe

Documentation Status Updates

Python Boilerplate contains all the boilerplate you need to create a Python package.

Docker

docker pull nmdpbioinformatics/py-gfe
docker run -it --rm -v $PWD:/opt nmdpbioinformatics/py-gfe seq2gfe \
        -f /opt/your_fastafile.fasta -l HLA-A

Example

>>> from Bio import SeqIO
>>> from BioSQL import BioSeqDatabase
>>> from seqann.sequence_annotation import BioSeqAnn
>>> import pygfe
>>> seq_file = 'test_dq.fasta'
>>> gfe = pygfe.pyGFE()
>>> server = BioSeqDatabase.open_database(driver="pymysql", user="root",
...                                       passwd="", host="localhost",
...                                      db="bioseqdb")
>>> seqann = BioSeqAnn(server=server)
>>> seq_rec = list(SeqIO.parse(seq_file, 'fasta'))[0]
>>> annotation = seqann.annotate(seq_rec, "HLA-DQB1")
>>> gfe = gfe.get_gfe(annotation, "HLA-DQB1")
>>> print(gfe)
HLA-DQB1w0-4-0-141-0-12-0-4-0-0-0-0-0

Credits

This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.

About

Python package for creating GFE notation from annotated sequences

Topics

Resources

License

GPL-3.0, GPL-3.0 licenses found

Licenses found

GPL-3.0
LICENSE
GPL-3.0
COPYING

Stars

Watchers

Forks

Packages

No packages published