Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Releases: linkml/linkml-model

v1.11.0 release

14 May 04:34
@matentzn matentzn
051e945
This commit was created on GitHub.com and signed with GitHub’s verified signature.
GPG key ID: B5690EEEBB952194
Verified
Learn about vigilant mode.

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.10.0...v1.11.0

Contributors

cmungall, plokhotnyuk, and 4 other contributors
Assets 2
Loading

v1.11.0-rc2 release

07 May 09:34
@matentzn matentzn
051e945
This commit was created on GitHub.com and signed with GitHub’s verified signature.
GPG key ID: B5690EEEBB952194
Verified
Learn about vigilant mode.

Choose a tag to compare

v1.11.0-rc2 release Pre-release
Pre-release

What's Changed

New Contributors

Full Changelog: v1.11.0-rc1...v1.11.0-rc2

Contributors

cmungall, plokhotnyuk, and 2 other contributors
Loading

v1.11.0-rc1

17 Apr 08:57
@matentzn matentzn
d7047e1
This commit was created on GitHub.com and signed with GitHub’s verified signature.
GPG key ID: B5690EEEBB952194
Verified
Learn about vigilant mode.

Choose a tag to compare

v1.11.0-rc1 Pre-release
Pre-release

What's Changed

New Contributors

Full Changelog: v1.10.0...v1.11.0-rc1

Contributors

dalito, matentzn, and gouttegd
Loading

v1.10.0 release

26 Feb 05:39
@matentzn matentzn
beebfe1
This commit was created on GitHub.com and signed with GitHub’s verified signature.
GPG key ID: B5690EEEBB952194
Verified
Learn about vigilant mode.

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.8.0...v1.10.0

Loading

v1.10.0-rc2

16 Jan 16:24
@matentzn matentzn
88e6ed4
This commit was created on GitHub.com and signed with GitHub’s verified signature.
GPG key ID: B5690EEEBB952194
Verified
Learn about vigilant mode.

Choose a tag to compare

v1.10.0-rc2 Pre-release
Pre-release

What's Changed

New Contributors

Full Changelog: v1.10.0-rc1...v1.10.0-rc2

Contributors

matentzn
Loading

v1.10.0-rc1

16 Jan 12:42
@matentzn matentzn
57a7e13
This commit was created on GitHub.com and signed with GitHub’s verified signature.
GPG key ID: B5690EEEBB952194
Verified
Learn about vigilant mode.

Choose a tag to compare

v1.10.0-rc1 Pre-release
Pre-release

What's Changed

New Contributors

Full Changelog: v1.9.0rc1...v1.10.0-rc1

Contributors

hoijui, cmungall, and 2 other contributors
Loading

v1.9.0-rc2

09 Dec 22:11
@sierra-moxon sierra-moxon
57a7e13
This commit was created on GitHub.com and signed with GitHub’s verified signature.
GPG key ID: B5690EEEBB952194
Verified
Learn about vigilant mode.

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.9.0rc1...v1.9.0-rc2

Contributors

hoijui, cmungall, and 2 other contributors
Loading

v1.9.0rc1

31 Jan 23:27
@cmungall cmungall
ce6d587
This commit was created on GitHub.com and signed with GitHub’s verified signature.
GPG key ID: B5690EEEBB952194
Verified
Learn about vigilant mode.

Choose a tag to compare

v1.9.0rc1 Pre-release
Pre-release

What's Changed

New Contributors

Full Changelog: v1.8.0...v1.9.0rc1

Contributors

kevinschaper, sneakers-the-rat, and amc-corey-cox
Loading

v1.8.0

03 Jul 14:21
@cmungall cmungall
76bc327
This commit was created on GitHub.com and signed with GitHub’s verified signature.
GPG key ID: B5690EEEBB952194
Verified
Learn about vigilant mode.

Choose a tag to compare

Highlights

New primitive types for use in scientific computing

Provides new primitives such as uint32 for precise specification of numeric base types

https://github.com/linkml/linkml-model/pull/185/files

This work was done by the @linkml/ndarray-wg as part of the Berkeley neuro-hackathon

Enum model enhancements

permissible_values now allows for many of the same slots as other elements, allowing for placement in an is-a hierarchy. See #192, #194, #195

This metamodel also introduces the concept of enum bindings. See the examples here: https://github.com/linkml/linkml-model/blob/main/tests/input/examples/schema_definition-enum_bindings-1.yaml

For example, given a class for modeling concepts or vocabulary terms in your model:

 Concept:
 description: A generic class for representing an element from a vocabulary or ontology.
 attributes:
 id:
 identifier: true
 description: CURIE/identifier for the concept. E.g. ENVO:1234567
 name:
 description: human-readable label of the concept. E.g. "blood"
 vocabulary:
 description: E.g. UBERON, PO, ENVO, NCIT

and a class that uses it:

 EnvironmentalMaterialSample:
 attributes:
 name:
 description: E.g. my blood sample
 sample_material_type:
 range: Concept

This allows for a great deal of flexibility. But what if we want to restrict the values of the id field of the referenced concept based on a (static of dynamic) enum?

We can modify the attribute or slot:

 sample_material_type:
 range: Concept
 bindings:
 - binds_value_of: id
 range: ENVOMaterialEnum
 obligation_level: RECOMMENDED
 description: Material type from the ENVO ontology

Currently this only serves as documentation as logic to validate bindings is not yet implemented

What's Changed

New Contributors

Full Changelog: v1.7.0...v1.8.0

Contributors

cmungall, vincentkelleher, and sierra-moxon
Loading
ml-evs and StroemPhi reacted with hooray emoji
2 people reacted

v1.8.0rc1

28 Jun 14:31
@cmungall cmungall
76bc327
This commit was created on GitHub.com and signed with GitHub’s verified signature.
GPG key ID: B5690EEEBB952194
Verified
Learn about vigilant mode.

Choose a tag to compare

v1.8.0rc1 Pre-release
Pre-release

Highlights

New primitive types for use in scientific computing

Provides new primitives such as uint32 for precise specification of numeric base types

https://github.com/linkml/linkml-model/pull/185/files

This work was done by the @linkml/ndarray-wg as part of the Berkeley neuro-hackathon

Enum model enhancements

permissible_values now allows for many of the same slots as other elements, allowing for placement in an is-a hierarchy. See #192, #194, #195

This metamodel also introduces the concept of enum bindings. See the examples here: https://github.com/linkml/linkml-model/blob/main/tests/input/examples/schema_definition-enum_bindings-1.yaml

For example, given a class for modeling concepts or vocabulary terms in your model:

 Concept:
 description: A generic class for representing an element from a vocabulary or ontology.
 attributes:
 id:
 identifier: true
 description: CURIE/identifier for the concept. E.g. ENVO:1234567
 name:
 description: human-readable label of the concept. E.g. "blood"
 vocabulary:
 description: E.g. UBERON, PO, ENVO, NCIT

and a class that uses it:

 EnvironmentalMaterialSample:
 attributes:
 name:
 description: E.g. my blood sample
 sample_material_type:
 range: Concept

This allows for a great deal of flexibility. But what if we want to restrict the values of the id field of the referenced concept based on a (static of dynamic) enum?

We can modify the attribute or slot:

 sample_material_type:
 range: Concept
 bindings:
 - binds_value_of: id
 range: ENVOMaterialEnum
 obligation_level: RECOMMENDED
 description: Material type from the ENVO ontology

Currently this only serves as documentation as logic to validate bindings is not yet implemented

What's Changed

New Contributors

Full Changelog: v1.7.0...v1.8.0rc1

Contributors

cmungall, vincentkelleher, and sierra-moxon
Loading
Previous 1 3 4 5
Previous

AltStyle によって変換されたページ (->オリジナル) /