Skip to content

Commit

Permalink
API update
Browse files Browse the repository at this point in the history
  • Loading branch information
sdRDM Bot authored and sdRDM Bot committed Jun 11, 2024
1 parent 3f48fd3 commit da26632
Show file tree
Hide file tree
Showing 15 changed files with 75 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pyeed/core/abstractannotation.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ class AbstractAnnotation(
json_schema_extra=dict(),
)

_repo: Optional[str] = PrivateAttr(default="https://github.com/PyEED/pyeed")
_commit: Optional[str] = PrivateAttr(
default="3f48fd300e8d9af8dc391aa672f618d314088bdc"
)

_raw_xml_data: Dict = PrivateAttr(default_factory=dict)

@model_validator(mode="after")
Expand Down
5 changes: 5 additions & 0 deletions pyeed/core/alignmentresult.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ class AlignmentResult(
json_schema_extra=dict(),
)

_repo: Optional[str] = PrivateAttr(default="https://github.com/PyEED/pyeed")
_commit: Optional[str] = PrivateAttr(
default="3f48fd300e8d9af8dc391aa672f618d314088bdc"
)

_raw_xml_data: Dict = PrivateAttr(default_factory=dict)

@model_validator(mode="after")
Expand Down
5 changes: 5 additions & 0 deletions pyeed/core/blastdata.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,11 @@ class BlastData(
json_schema_extra=dict(),
)

_repo: Optional[str] = PrivateAttr(default="https://github.com/PyEED/pyeed")
_commit: Optional[str] = PrivateAttr(
default="3f48fd300e8d9af8dc391aa672f618d314088bdc"
)

_raw_xml_data: Dict = PrivateAttr(default_factory=dict)

@model_validator(mode="after")
Expand Down
5 changes: 5 additions & 0 deletions pyeed/core/clustalomegaresult.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ class ClustalOmegaResult(
json_schema_extra=dict(),
)

_repo: Optional[str] = PrivateAttr(default="https://github.com/PyEED/pyeed")
_commit: Optional[str] = PrivateAttr(
default="3f48fd300e8d9af8dc391aa672f618d314088bdc"
)

_raw_xml_data: Dict = PrivateAttr(default_factory=dict)

@model_validator(mode="after")
Expand Down
5 changes: 5 additions & 0 deletions pyeed/core/dnarecord.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ class DNARecord(
json_schema_extra=dict(),
)

_repo: Optional[str] = PrivateAttr(default="https://github.com/PyEED/pyeed")
_commit: Optional[str] = PrivateAttr(
default="3f48fd300e8d9af8dc391aa672f618d314088bdc"
)

_raw_xml_data: Dict = PrivateAttr(default_factory=dict)

@model_validator(mode="after")
Expand Down
5 changes: 5 additions & 0 deletions pyeed/core/numberedsequence.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ class NumberedSequence(
),
)

_repo: Optional[str] = PrivateAttr(default="https://github.com/PyEED/pyeed")
_commit: Optional[str] = PrivateAttr(
default="3f48fd300e8d9af8dc391aa672f618d314088bdc"
)

_raw_xml_data: Dict = PrivateAttr(default_factory=dict)

@model_validator(mode="after")
Expand Down
5 changes: 5 additions & 0 deletions pyeed/core/organism.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,11 @@ class Organism(
),
)

_repo: Optional[str] = PrivateAttr(default="https://github.com/PyEED/pyeed")
_commit: Optional[str] = PrivateAttr(
default="3f48fd300e8d9af8dc391aa672f618d314088bdc"
)

_raw_xml_data: Dict = PrivateAttr(default_factory=dict)

@model_validator(mode="after")
Expand Down
5 changes: 5 additions & 0 deletions pyeed/core/pairwisealignmentresult.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,11 @@ class PairwiseAlignmentResult(
json_schema_extra=dict(),
)

_repo: Optional[str] = PrivateAttr(default="https://github.com/PyEED/pyeed")
_commit: Optional[str] = PrivateAttr(
default="3f48fd300e8d9af8dc391aa672f618d314088bdc"
)

_raw_xml_data: Dict = PrivateAttr(default_factory=dict)

@model_validator(mode="after")
Expand Down
5 changes: 5 additions & 0 deletions pyeed/core/proteinrecord.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,11 @@ class ProteinRecord(
),
)

_repo: Optional[str] = PrivateAttr(default="https://github.com/PyEED/pyeed")
_commit: Optional[str] = PrivateAttr(
default="3f48fd300e8d9af8dc391aa672f618d314088bdc"
)

_raw_xml_data: Dict = PrivateAttr(default_factory=dict)

@model_validator(mode="after")
Expand Down
5 changes: 5 additions & 0 deletions pyeed/core/region.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ class Region(
),
)

_repo: Optional[str] = PrivateAttr(default="https://github.com/PyEED/pyeed")
_commit: Optional[str] = PrivateAttr(
default="3f48fd300e8d9af8dc391aa672f618d314088bdc"
)

_raw_xml_data: Dict = PrivateAttr(default_factory=dict)

@model_validator(mode="after")
Expand Down
5 changes: 5 additions & 0 deletions pyeed/core/regionset.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ class RegionSet(
),
)

_repo: Optional[str] = PrivateAttr(default="https://github.com/PyEED/pyeed")
_commit: Optional[str] = PrivateAttr(
default="3f48fd300e8d9af8dc391aa672f618d314088bdc"
)

_object_terms: Set[str] = PrivateAttr(
default={"http://semanticscience.org/resource/SIO_000370"}
)
Expand Down
5 changes: 5 additions & 0 deletions pyeed/core/sequence.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ class Sequence(
json_schema_extra=dict(),
)

_repo: Optional[str] = PrivateAttr(default="https://github.com/PyEED/pyeed")
_commit: Optional[str] = PrivateAttr(
default="3f48fd300e8d9af8dc391aa672f618d314088bdc"
)

_raw_xml_data: Dict = PrivateAttr(default_factory=dict)

@model_validator(mode="after")
Expand Down
5 changes: 5 additions & 0 deletions pyeed/core/sequencerecord.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,11 @@ class SequenceRecord(
),
)

_repo: Optional[str] = PrivateAttr(default="https://github.com/PyEED/pyeed")
_commit: Optional[str] = PrivateAttr(
default="3f48fd300e8d9af8dc391aa672f618d314088bdc"
)

_raw_xml_data: Dict = PrivateAttr(default_factory=dict)

@model_validator(mode="after")
Expand Down
5 changes: 5 additions & 0 deletions pyeed/core/site.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ class Site(
),
)

_repo: Optional[str] = PrivateAttr(default="https://github.com/PyEED/pyeed")
_commit: Optional[str] = PrivateAttr(
default="3f48fd300e8d9af8dc391aa672f618d314088bdc"
)

_raw_xml_data: Dict = PrivateAttr(default_factory=dict)

@model_validator(mode="after")
Expand Down
5 changes: 5 additions & 0 deletions pyeed/core/standardnumbering.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ class StandardNumbering(
),
)

_repo: Optional[str] = PrivateAttr(default="https://github.com/PyEED/pyeed")
_commit: Optional[str] = PrivateAttr(
default="3f48fd300e8d9af8dc391aa672f618d314088bdc"
)

_raw_xml_data: Dict = PrivateAttr(default_factory=dict)

@model_validator(mode="after")
Expand Down

0 comments on commit da26632

Please sign in to comment.