Skip to content

Commit

Permalink
Revert "Embeddings esm (#93)"
Browse files Browse the repository at this point in the history
This reverts commit 50ce1f1.
  • Loading branch information
haeussma committed Oct 14, 2024
1 parent 97ff8e7 commit af3e981
Show file tree
Hide file tree
Showing 63 changed files with 588 additions and 3,388 deletions.
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
[![Documentation](https://github.com/PyEED/pyeed/actions/workflows/make_docs.yaml/badge.svg)](https://github.com/PyEED/pyeed/actions/workflows/make_docs.yaml)

## About 📖
pyeed is a toolkit enabling object-oriented analysis of protein sequences, instead of working with sequences in a file-oriented fashion. This will enable the user to easily access and manipulate sequence information and to perform analyses on the sequence data.
pyEED is a toolkit enabling object-oriented analysis of protein sequences, instead of working with sequences in a file-oriented fashion. This will enable the user to easily access and manipulate sequence information and to perform analyses on the sequence data.
This library is currently under development and thus the API is subject to change.


Expand All @@ -20,7 +20,9 @@ pip install git+https://github.com/PyEED/pyeed.git

## Quick start 🚀

### Launch Neo4j database via Docker and mount to a local directory
```bash
docker run --name pyeed-neo4j -p 7474:7474 -p 7687:7687 -v $PWD/data:/data -v $PWD/logs:/logs -v $PWD/import:/var/lib/neo4j/import -v $PWD/plugins:/plugins -e NEO4J_AUTH=neo4j/test -d neo4j
```
Library is currently refactored, quick start will be updated soon!

## Documentation 📘

Check out the [documentation](https://pyeed.github.io/pyeed/) for in-depth information on how to setup `pyeed`,
use the build-in tools, and store sequence data in databases.
69 changes: 68 additions & 1 deletion docs/examples/ids.json
Original file line number Diff line number Diff line change
@@ -1 +1,68 @@
["Q9YBK2", "A6UQS6", "A1RSD7", "Q46CW6", "Q4JAL1", "Q8TU57", "P26498", "Q980S9", "B1YC36", "C3MJ04", "Q9HM12", "A3MY01", "A9A923", "Q5V2S5", "A4G0T1", "Q8TZW1", "Q6L123", "Q2FN14", "Q8PWS4", "Q18H49", "Q8ZYP7", "A8MD44", "P0DF56", "B0R5A8", "B6YUL1", "O30186", "A5UMW7", "Q2NEB3", "A6VHQ4", "Q12WC8", "A7I771", "Q5JF22", "Q8TV85", "O67275", "A2BIZ8", "Q3IQF5", "Q976F3", "P0CW63", "P0CW62", "C5A4B7", "O27429", "C3NF87", "Q97CT6", "Q58605", "Q9V1P7", "A6UU75", "O59488", "A0B742", "RUM32465.1", "NPA53530.1", "RLF67685.1", "MCL4350655.1", "NOZ59931.1", "WP_248897180.1", "MCL4451275.1", "RLE93954.1", "MBU7022768.1", "NHV96297.1", "PLJ76955.1", "WCN31494.1", "WP_211530438.1", "MBP7070042.1", "MCD6512403.1", "MCI2415466.1", "TMJ11138.1", "NQE45598.1"]
[
"WP_211530438",
"RUM32465",
"NOZ59931",
"MCI2415466",
"MCD6512403",
"MCL4350655",
"RLF67685",
"RLE93954",
"TMJ11138",
"WP_248897180",
"MBU7022768",
"NPA53530",
"MCL4451275",
"MBP7070042",
"NHV96297",
"NQE45598",
"PLJ76955",
"Q6L123",
"Q8TZW1",
"Q8ZYP7",
"Q46CW6",
"Q18H49",
"C3MJ04",
"Q8TV85",
"A6UU75",
"Q97CT6",
"O59488",
"WCN31494",
"O27429",
"Q2FN14",
"P0DF56",
"A0B742",
"Q2NEB3",
"Q9HM12",
"A5UMW7",
"Q9YBK2",
"A4G0T1",
"Q12WC8",
"A2BIZ8",
"O30186",
"C3NF87",
"A6UQS6",
"A1RSD7",
"A8MD44",
"P0CW62",
"A6VHQ4",
"A9A923",
"B6YUL1",
"Q5V2S5",
"Q4JAL1",
"B1YC36",
"P0CW63",
"Q980S9",
"Q3IQF5",
"Q9V1P7",
"Q8PWS4",
"Q5JF22",
"Q8TU57",
"C5A4B7",
"B0R5A8",
"P26498",
"O67275",
"A7I771",
"Q976F3",
"A3MY01",
"Q58605"
]
247 changes: 0 additions & 247 deletions docs/model_diagram.json

This file was deleted.

22 changes: 21 additions & 1 deletion pyeed/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,21 @@
from pyeed.pyeed import Pyeed
import os

from .core.abstractannotation import AbstractAnnotation
from .core.alignmentresult import AlignmentResult
from .core.annotation import Annotation
from .core.blastdata import BlastData
from .core.clustalomegaresult import ClustalOmegaResult
from .core.cluster import Cluster
from .core.dnarecord import DNARecord
from .core.numberedsequence import NumberedSequence
from .core.ontology import Ontology
from .core.organism import Organism
from .core.pairwisealignmentresult import PairwiseAlignmentResult
from .core.proteinrecord import ProteinRecord
from .core.region import Region
from .core.regionset import RegionSet
from .core.sequence import Sequence
from .core.sequencerecord import SequenceRecord
from .core.sequencetype import SequenceType
from .core.site import Site
from .core.standardnumbering import StandardNumbering
Loading

0 comments on commit af3e981

Please sign in to comment.