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

String db update to latest versions #360

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
76 changes: 67 additions & 9 deletions DataCatalog/examples/0.3/string-db.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
{
"@context": "http://schema.org",
"@type": "WebPage",
"@id": "https://string-db.org",
"identifier": "stringdb",
"@type": "DataCatalog",
"@id": "https://string-db.org/",
"http://purl.org/dc/terms/conformsTo": "https://bioschemas.org/specifications/DataCatalog/0.3",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"name": "STRING protein-protein interaction networks",
"description": "STRING is a database of known and predicted protein-protein interactions and a functional enrichment tool covering more than 5000 genomes",
"url": "https://string-db.org",
"url": "https://string-db.org/",
"keywords": "protein, protein interactions, string, functional annotation, functional associations, interaction network, enrichment",
"dateModified": "2019.01.13",
"publication": {
"@type": "PublicationEvent",
"citation": {
"@type": "ScholarlyArticle",
"@id": "https://doi.org/10.1093/nar/gky1131",
"name": "STRING v11: protein-protein association networks with increased coverage, supporting functional discovery in genome-wide experimental datasets.",
"url": "http://identifiers.org/pubmed:30476243"
},
Expand All @@ -22,7 +23,7 @@
"@type": "ImageObject",
"url": "https://string-db.org/images/string_logo_2015.png"
},
"creator": {
"provider": {
"@type": "Organization",
"name": "STRING consortium",
"url": "https://string-db.org",
Expand Down Expand Up @@ -54,10 +55,67 @@
}
]
},
"version": "11.0",
"potentialAction": {
"target": "https://string-db.org/cgi/network.pl?identifier={query_string}",
"@type": "SearchAction",
"query-input": "required name=query_string"
}
},
"dataset": [
{
"@type": "Dataset",
"@id": "https://string-db.org/#string.v11",
"http://purl.org/dc/terms/conformsTo": "https://bioschemas.org/specifications/Dataset/0.3",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"identifier": "stringdb",
"name": "STRING protein-protein interaction networks",
"description": "STRING is a database of known and predicted protein-protein interactions and a functional enrichment tool covering more than 5000 genomes",
"url": "https://string-db.org/",
"keywords": "protein, protein interactions, string, functional annotation, functional associations, interaction network, enrichment",
"dateModified": "2019.01.13",
"citation": {
"@type": "ScholarlyArticle",
"@id": "https://doi.org/10.1093/nar/gky1131",
"name": "STRING v11: protein-protein association networks with increased coverage, supporting functional discovery in genome-wide experimental datasets.",
"url": "http://identifiers.org/pubmed:30476243"
},
"creator": {
"@type": "Organization",
"name": "STRING consortium",
"url": "https://string-db.org",
"email": [
"[email protected]",
"[email protected]",
"[email protected]"
],
"memberOf": [
{
"@type": "Organization",
"name": "SIB Swiss bioinformatics institute",
"url": "https://www.sib.swiss/"
},
{
"@type": "Organization",
"name": "European Molecular Biology Laboratory",
"url": "https://embl.org/"
},
{
"@type": "Organization",
"name": "University of Zurich",
"url": "https://www.uzh.ch/"
},
{
"@type": "Organization",
"name": "University of Copenhagen",
"url": "https://www.ku.dk/"
}
]
},
"distribution": "https://string-db.org/cgi/download.pl",
"license": {
"@type": "CreativeWork",
"name": "Creative Commons Attribution 4.0 International",
"url": "https://creativecommons.org/licenses/by/4.0/"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should not we use this URL as the "@id" as well?

},
"version": "11.0"
}
]
}
15 changes: 9 additions & 6 deletions Protein/examples/0.9-DRAFT/STRING_9606.ENSP00000379258.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,26 @@
"@base": "http://schema.org"
}
],
"@type": "Dataset",
"@type": "bio:DataRecord",
"@id": "https://string-db.org/network/9606.ENSP00000379258",
"http://purl.org/dc/terms/conformsTo": "https://bioschemas.org/specifications/DataRecord/0.2-DRAFT",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"includedInDataset": "https://string-db.org/#string.v11",
"mainEntity": {
"@type": [
"bio:Protein"
],
"@type": "bio:Protein",
"@id": "https://string-db.org/network/9606.ENSP00000379258",
"http://purl.org/dc/terms/conformsTo": "https://bioschemas.org/specifications/Protein/0.9-DRAFT",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The currentProtein profile version is https://bioschemas.org/profiles/Protein/0.11-RELEASE/ should it not be better to update the example to the latest release rather than using an old DRAFT profile?

"name": "GLI3",
"identifier": "9606.ENSP00000379258",
"additionalproperty": [
"taxonomicRange": [
{
"@id": "http://identifiers.org/taxonomy:9606",
"identifier": "9606",
"@type": "bio:taxon",
"name": "Homo sapiens",
"taxonRank": "species"
}
]
],
"url": "https://string-db.org/network/9606.ENSP00000379258",
},
"name": "STRING GLI3 interaction network (Homo sapiens)",
"description": "Homo sapiens STRING functional association network of GLI3 protein.",
Expand Down