Skip to content

Commit

Permalink
Use concept_class_id when looking up condition concept type report.
Browse files Browse the repository at this point in the history
Fixes #107.

Note: this commit regenerates roxygen2 documentation using the latest build which removes the specific version number from the comments.  Please update your local roxygen package before builds.
  • Loading branch information
chrisknoll committed May 16, 2016
1 parent 3b089c5 commit 72c899d
Show file tree
Hide file tree
Showing 24 changed files with 140 additions and 60 deletions.
1 change: 1 addition & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ Suggests:
testthat
License: Apache License
Roxygen: list(wrap = TRUE)
RoxygenNote: 5.0.1
2 changes: 1 addition & 1 deletion NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by roxygen2 (4.1.1): do not edit by hand
# Generated by roxygen2: do not edit by hand

export(achilles)
export(achillesHeel)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ from @results_database_schema.ACHILLES_results ar1
when (concept_name like 'Inpatient%' or concept_name like 'Outpatient%' ) and (concept_name not like '%primary%' and concept_name not like '%1st position%') then 'Secondary diagnosis'
else '' end as concept_group_name
from @vocab_database_schema.concept
where lower(domain_id) = 'condition type'
where lower(concept_class_id) = 'condition type'

) c2
on ar1.stratum_2 = cast(c2.concept_id as VARCHAR)
Expand Down
30 changes: 17 additions & 13 deletions man/achilles.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/analysesDetails.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions man/exportConditionEraToJson.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions man/exportConditionToJson.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions man/exportDashboardToJson.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions man/exportDataDensityToJson.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions man/exportDeathToJson.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions man/exportDrugEraToJson.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions man/exportDrugToJson.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions man/exportHeelToJson.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions man/exportMeasurementToJson.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions man/exportObservationPeriodToJson.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions man/exportObservationToJson.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions man/exportPersonToJson.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 72c899d

Please sign in to comment.