Skip to content
This repository has been archived by the owner on Jul 9, 2024. It is now read-only.

Commit

Permalink
feat(home): Change Home Advanced Queries
Browse files Browse the repository at this point in the history
* Changed 3 advanced queries to correspond with current data.

Closes #1885
  • Loading branch information
Michael Moncada committed Mar 23, 2016
1 parent 0508ac7 commit 3a4f738
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions app/scripts/home/home.controllers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,20 +80,20 @@ module ngApp.home.controllers {

this.exampleSearchQueries = [
{
description: "Brain cancer cases over the age of 40 at diagnosis",
filters: {"op":"and","content":[{"op":"in","content":{"field":"cases.project.primary_site","value":["Brain"]}},{"op":">=","content":{"field":"cases.clinical.age_at_diagnosis","value":[14965]}}]},
description: "Kidney cancer cases under the age of 20 at diagnosis",
filters: {"op":"and","content":[{"op":"<=","content":{"field":"cases.clinical.age_at_diagnosis","value":[14600]}},{"op":"in","content":{"field":"cases.project.primary_site","value":["Kidney"]}}]},
caseCount: null,
fileCount: null
},
{
description: "All female cases from the TARGET-NBL project",
filters: {"op":"and","content":[{"op":"in","content":{"field":"cases.project.project_id","value":["TARGET-NBL"]}},{"op":"in","content":{"field":"cases.clinical.gender","value":["female"]}}]},
description: "CNV data of female brain cancer cases",
filters: {"op":"and","content":[{"op":"in","content":{"field":"files.data_category","value":["Copy number variation"]}},{"op":"in","content":{"field":"cases.project.primary_site","value":["Brain"]}},{"op":"in","content":{"field":"cases.demographic.gender","value":["female"]}}]},
caseCount: null,
fileCount: null
},
{
description: "All Asian cases with disease type Thyroid Carcinoma",
filters: {"op":"and","content":[{"op":"in","content":{"field":"cases.project.disease_type","value":["Thyroid Carcinoma"]}},{"op":"in","content":{"field":"cases.clinical.race","value":["asian"]}}]},
description: "Germline mutation data in TCGA-OV project",
filters: {"op":"and","content":[{"op":"in","content":{"field":"files.data_type","value":["Simple nucleotide variation"]}},{"op":"in","content":{"field":"cases.project.project_id","value":["TCGA-OV"]}}]},
caseCount: null,
fileCount: null
},
Expand Down

0 comments on commit 3a4f738

Please sign in to comment.