Skip to content

Commit

Permalink
Merge pull request #153 from alliance-genome/SCRUM-1855
Browse files Browse the repository at this point in the history
SCRUM-1855: represent a range of identifiers
  • Loading branch information
abecerra authored Aug 17, 2022
2 parents b57dcae + 9afbdab commit b1c0092
Showing 1 changed file with 34 additions and 1 deletion.
35 changes: 34 additions & 1 deletion model/schema/core.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,18 @@ classes:
Protein:
is_a: GenomicEntity

Identifier:
slots:
- counter
- subdomain_code
- subdomain_name
- curie

IdentifiersRange:
slots:
- first
- last

## ------------
## SLOTS
## ------------
Expand Down Expand Up @@ -570,7 +582,28 @@ slots:
description: This determines if the the schedule is active or not
range: boolean

## --------------------
counter:
description: a number to identify an alliance resource in a subdomain
range: integer

subdomain_code:
description: a three letter string, representing a subdomain (e.g 101 represents disease_annotation)
range: string

subdomain_name:
description: subdomain name (e.g disease_annotation)
range: string

first:
description: first identifier in a range
range: Identifier

last:
description: last identifier in a range
range: Identifier


## --------------------
## ASSOCIATION SLOTS
## --------------------

Expand Down

0 comments on commit b1c0092

Please sign in to comment.