Skip to content

Commit

Permalink
Merge pull request #255 from RobokopU24/update/remove-ebola-query
Browse files Browse the repository at this point in the history
replace ebola sample query with castleman disease query
  • Loading branch information
Woozl authored May 10, 2023
2 parents e58d283 + 4c9532f commit fcc3d0b
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/pages/queryBuilder/SampleQueryLoader.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,19 +43,25 @@ const samples = [
},
},
{
name: 'Diseases that share a genetic association with Ebola',
name: 'Chemicals that interact with a gene related to Castleman disease',
query: {
message: {
query_graph: {
nodes: {
n0: {
categories: [
'biolink:ChemicalEntity',
],
name: 'Chemical Entity',
},
n1: {
categories: [
'biolink:Gene',
],
name: 'Gene',
},
n1: {
name: 'Ebola hemorrhagic fever',
n2: {
name: 'Castleman disease',
categories: [
'biolink:DiseaseOrPhenotypicFeature',
'biolink:BiologicalEntity',
Expand All @@ -65,26 +71,20 @@ const samples = [
'biolink:Disease',
],
ids: [
'MONDO:0005737',
'MONDO:0015564',
],
},
n2: {
categories: [
'biolink:Disease',
],
name: 'Disease',
},
},
edges: {
e0: {
subject: 'n0',
object: 'n1',
predicates: [
'biolink:related_to',
'biolink:interacts_with',
],
},
e1: {
subject: 'n0',
subject: 'n1',
object: 'n2',
predicates: [
'biolink:related_to',
Expand Down

0 comments on commit fcc3d0b

Please sign in to comment.