Skip to content

Commit

Permalink
Merge branch 'dev' of https://github.com/PyEED/pyeed into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
haeussma committed May 28, 2024
2 parents 3c058ca + 905f283 commit 168d235
Show file tree
Hide file tree
Showing 15 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion pyeed/core/abstractannotation.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class AbstractAnnotation(

_repo: Optional[str] = PrivateAttr(default="https://github.com/PyEED/pyeed")
_commit: Optional[str] = PrivateAttr(
default="63f43b11e0d359e1d0a1f541cea25dd484ad0072"
default="8a37de9455d136d5661c7cc077ce66512dedfac8"
)

_raw_xml_data: Dict = PrivateAttr(default_factory=dict)
Expand Down
2 changes: 1 addition & 1 deletion pyeed/core/alignmentresult.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class AlignmentResult(

_repo: Optional[str] = PrivateAttr(default="https://github.com/PyEED/pyeed")
_commit: Optional[str] = PrivateAttr(
default="63f43b11e0d359e1d0a1f541cea25dd484ad0072"
default="8a37de9455d136d5661c7cc077ce66512dedfac8"
)

_raw_xml_data: Dict = PrivateAttr(default_factory=dict)
Expand Down
2 changes: 1 addition & 1 deletion pyeed/core/blastdata.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ class BlastData(

_repo: Optional[str] = PrivateAttr(default="https://github.com/PyEED/pyeed")
_commit: Optional[str] = PrivateAttr(
default="63f43b11e0d359e1d0a1f541cea25dd484ad0072"
default="8a37de9455d136d5661c7cc077ce66512dedfac8"
)

_raw_xml_data: Dict = PrivateAttr(default_factory=dict)
Expand Down
2 changes: 1 addition & 1 deletion pyeed/core/clustalomegaresult.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class ClustalOmegaResult(

_repo: Optional[str] = PrivateAttr(default="https://github.com/PyEED/pyeed")
_commit: Optional[str] = PrivateAttr(
default="63f43b11e0d359e1d0a1f541cea25dd484ad0072"
default="8a37de9455d136d5661c7cc077ce66512dedfac8"
)

_raw_xml_data: Dict = PrivateAttr(default_factory=dict)
Expand Down
2 changes: 1 addition & 1 deletion pyeed/core/dnarecord.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class DNARecord(

_repo: Optional[str] = PrivateAttr(default="https://github.com/PyEED/pyeed")
_commit: Optional[str] = PrivateAttr(
default="63f43b11e0d359e1d0a1f541cea25dd484ad0072"
default="8a37de9455d136d5661c7cc077ce66512dedfac8"
)

_raw_xml_data: Dict = PrivateAttr(default_factory=dict)
Expand Down
2 changes: 1 addition & 1 deletion pyeed/core/organism.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ class Organism(

_repo: Optional[str] = PrivateAttr(default="https://github.com/PyEED/pyeed")
_commit: Optional[str] = PrivateAttr(
default="63f43b11e0d359e1d0a1f541cea25dd484ad0072"
default="8a37de9455d136d5661c7cc077ce66512dedfac8"
)

_raw_xml_data: Dict = PrivateAttr(default_factory=dict)
Expand Down
2 changes: 1 addition & 1 deletion pyeed/core/pairwisealignmentresult.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class PairwiseAlignmentResult(

_repo: Optional[str] = PrivateAttr(default="https://github.com/PyEED/pyeed")
_commit: Optional[str] = PrivateAttr(
default="63f43b11e0d359e1d0a1f541cea25dd484ad0072"
default="8a37de9455d136d5661c7cc077ce66512dedfac8"
)

_raw_xml_data: Dict = PrivateAttr(default_factory=dict)
Expand Down
4 changes: 1 addition & 3 deletions pyeed/core/proteinrecord.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class ProteinRecord(

_repo: Optional[str] = PrivateAttr(default="https://github.com/PyEED/pyeed")
_commit: Optional[str] = PrivateAttr(
default="63f43b11e0d359e1d0a1f541cea25dd484ad0072"
default="8a37de9455d136d5661c7cc077ce66512dedfac8"
)

_raw_xml_data: Dict = PrivateAttr(default_factory=dict)
Expand Down Expand Up @@ -145,7 +145,6 @@ def get_id(cls, protein_id: str) -> "ProteinRecord":

import nest_asyncio


nest_asyncio.apply()

if isinstance(protein_id, list) and all(isinstance(x, str) for x in protein_id):
Expand All @@ -166,7 +165,6 @@ def get_ids(cls, accession_ids: List[str]) -> List["ProteinRecord"]:

import nest_asyncio


nest_asyncio.apply()

return asyncio.run(
Expand Down
2 changes: 1 addition & 1 deletion pyeed/core/region.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class Region(

_repo: Optional[str] = PrivateAttr(default="https://github.com/PyEED/pyeed")
_commit: Optional[str] = PrivateAttr(
default="63f43b11e0d359e1d0a1f541cea25dd484ad0072"
default="8a37de9455d136d5661c7cc077ce66512dedfac8"
)

_raw_xml_data: Dict = PrivateAttr(default_factory=dict)
Expand Down
2 changes: 1 addition & 1 deletion pyeed/core/regionset.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class RegionSet(

_repo: Optional[str] = PrivateAttr(default="https://github.com/PyEED/pyeed")
_commit: Optional[str] = PrivateAttr(
default="63f43b11e0d359e1d0a1f541cea25dd484ad0072"
default="8a37de9455d136d5661c7cc077ce66512dedfac8"
)

_object_terms: Set[str] = PrivateAttr(
Expand Down
2 changes: 1 addition & 1 deletion pyeed/core/sequence.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class Sequence(

_repo: Optional[str] = PrivateAttr(default="https://github.com/PyEED/pyeed")
_commit: Optional[str] = PrivateAttr(
default="63f43b11e0d359e1d0a1f541cea25dd484ad0072"
default="8a37de9455d136d5661c7cc077ce66512dedfac8"
)

_raw_xml_data: Dict = PrivateAttr(default_factory=dict)
Expand Down
2 changes: 1 addition & 1 deletion pyeed/core/sequencerecord.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ class SequenceRecord(

_repo: Optional[str] = PrivateAttr(default="https://github.com/PyEED/pyeed")
_commit: Optional[str] = PrivateAttr(
default="63f43b11e0d359e1d0a1f541cea25dd484ad0072"
default="8a37de9455d136d5661c7cc077ce66512dedfac8"
)

_raw_xml_data: Dict = PrivateAttr(default_factory=dict)
Expand Down
2 changes: 1 addition & 1 deletion pyeed/core/site.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class Site(

_repo: Optional[str] = PrivateAttr(default="https://github.com/PyEED/pyeed")
_commit: Optional[str] = PrivateAttr(
default="63f43b11e0d359e1d0a1f541cea25dd484ad0072"
default="8a37de9455d136d5661c7cc077ce66512dedfac8"
)

_raw_xml_data: Dict = PrivateAttr(default_factory=dict)
Expand Down
2 changes: 1 addition & 1 deletion pyeed/core/standardnumbering.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class StandardNumbering(

_repo: Optional[str] = PrivateAttr(default="https://github.com/PyEED/pyeed")
_commit: Optional[str] = PrivateAttr(
default="63f43b11e0d359e1d0a1f541cea25dd484ad0072"
default="8a37de9455d136d5661c7cc077ce66512dedfac8"
)

_raw_xml_data: Dict = PrivateAttr(default_factory=dict)
Expand Down
2 changes: 2 additions & 0 deletions pyeed/schemes/pyeed_schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,8 @@ classDiagram
+FAMILY
+MOTIVE
+CODING_SEQ
+ALPHAHELIX
+BETASTRAND
}
class SequenceType {
Expand Down

0 comments on commit 168d235

Please sign in to comment.