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

Commit

Permalink
fix(home): change project in example query
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-wilmer committed May 4, 2016
1 parent 1898606 commit 8cfdecd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/scripts/core/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
Expand Down
10 changes: 5 additions & 5 deletions app/scripts/home/home.controllers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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,
Expand Down Expand Up @@ -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: [
Expand All @@ -126,7 +126,7 @@ module ngApp.home.controllers {
op: "in",
content: {
field: "cases.project.project_id",
value: [ "TCGA-OV" ]
value: [ "TCGA-GBM" ]
}
}
]
Expand Down Expand Up @@ -308,7 +308,7 @@ module ngApp.home.controllers {

angular
.module("home.controller", [
"ngApp.core",
"ngApp.core",
"participants.services",
"files.services"
])
Expand Down

0 comments on commit 8cfdecd

Please sign in to comment.