Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

new expset property #1908

Merged
merged 2 commits into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ fourfront
Change Log
----------

8.1.3
=====

* Added disease_name property to experiment set schema.


8.1.2
=====

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
# Note: Various modules refer to this system as "encoded", not "fourfront".
name = "encoded"
version = "8.1.2"
version = "8.1.3"
description = "4DN-DCIC Fourfront"
authors = ["4DN-DCIC Team <[email protected]>"]
license = "MIT"
Expand Down
12 changes: 12 additions & 0 deletions src/encoded/schemas/experiment_set.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,18 @@
"lookup": 20,
"formInput": "textarea"
},
"disease_term": {
"title": "Disease Name",
"description": "Ontology term for the disorder or disease name associated with the set.",
"type": "array",
"lookup": 40,
"items":{
"title": "Disorder/Disease Name",
"description": "Disorder/Disease ontology term(s)",
"type": "string",
"linkTo": "OntologyTerm"
}
},
"dataset_group": {
"title": "Dataset Group",
"description": "An optional property to group datasets in a single row in the datasets summary table",
Expand Down
3 changes: 2 additions & 1 deletion src/encoded/tests/data/inserts/experiment_seq.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
"antibody_lot_id": "11111111",
"average_fragment_size": 100,
"fragmentation_method": "chemical",
"library_preparation_date": "2017-01-01"
"library_preparation_date": "2017-01-01",
"disease_term": "COVID-19"
},
{
"accession":"4DNEXO6777B1",
Expand Down
Loading