Skip to content
This repository has been archived by the owner on Jan 21, 2021. It is now read-only.

Commit

Permalink
Merge pull request #25 from thehyve/features/FT-834-add-genomebuild-t…
Browse files Browse the repository at this point in the history
…o-hd-summary

Add genomeBuildId to HighDim summary
  • Loading branch information
cataphract committed May 5, 2014
2 parents 20f242e + 0ec1f82 commit 2f5a26b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,9 @@ class HighDimController {
conceptWrapper: new OntologyTermWrapper(concept),
name: it.key.dataTypeName,
assayCount: it.value.size(),
supportedProjections: it.key.supportedProjections)
supportedProjections: it.key.supportedProjections,
genomeBuildId: it.value[0].platform.genomeReleaseId
)
}
}

Expand All @@ -82,4 +84,4 @@ class HighDimController {
)
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ class HighDimSummary {
String name
int assayCount
Set<String> supportedProjections
String genomeBuildId
}
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ class HighDimResourceTests extends ResourceTestCase {
assayCount: 2,
name: 'mrna',
supportedProjections: mrnaSupportedProjections,
genomeBuildId: 'hg19'
]
}

Expand Down

0 comments on commit 2f5a26b

Please sign in to comment.