From 8cfdecdd20d4a101fd463d20f0d80b1a0168866d Mon Sep 17 00:00:00 2001 From: Alex Wilmer Date: Wed, 4 May 2016 11:02:06 -0400 Subject: [PATCH] fix(home): change project in example query --- app/scripts/core/module.ts | 2 +- app/scripts/home/home.controllers.ts | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app/scripts/core/module.ts b/app/scripts/core/module.ts index 0bf627230..7f1951e89 100644 --- a/app/scripts/core/module.ts +++ b/app/scripts/core/module.ts @@ -9,7 +9,7 @@ angular "core.filters" ]) .constant('DATA_TYPES', { - GEQ: { full: "Gene Expression Quantifcation", abbr: "GEQ" }, + GEQ: { full: "Gene Expression Quantification", abbr: "GEQ" }, }) .constant('DATA_CATEGORIES', { SEQ: { full: "Raw Sequencing Data", abbr: "Seq" }, diff --git a/app/scripts/home/home.controllers.ts b/app/scripts/home/home.controllers.ts index 56929bd11..ef583c9a1 100755 --- a/app/scripts/home/home.controllers.ts +++ b/app/scripts/home/home.controllers.ts @@ -4,7 +4,7 @@ module ngApp.home.controllers { import IProjects = ngApp.projects.models.IProjects; import IParticipantsService = ngApp.participants.services.IParticipantsService; import IFilesService = ngApp.files.services.IFilesService; - + export interface IHomeController { getChartFilteredData() : any[]; getChartTooltipFunction(): any; @@ -24,7 +24,7 @@ module ngApp.home.controllers { /* @ngInject */ constructor(private ProjectsTableService: TableiciousConfig, - private CoreService: ICoreService, + private CoreService: ICoreService, private $filter: ng.ui.IFilterService, private ParticipantsService: IParticipantsService, private FilesService: IFilesService, @@ -111,7 +111,7 @@ module ngApp.home.controllers { fileCount: null }, { - description: "Gene expression quantification data in TCGA-OV project", + description: "Gene expression quantification data in TCGA-GBM project", filters: { op: "and", content: [ @@ -126,7 +126,7 @@ module ngApp.home.controllers { op: "in", content: { field: "cases.project.project_id", - value: [ "TCGA-OV" ] + value: [ "TCGA-GBM" ] } } ] @@ -308,7 +308,7 @@ module ngApp.home.controllers { angular .module("home.controller", [ - "ngApp.core", + "ngApp.core", "participants.services", "files.services" ])