Added MHC Data Pivot report#451
Merged
spamhurts merged 3 commits intorelease22.3-SNAPSHOTfrom May 18, 2022
Merged
Conversation
labkey-martyp
approved these changes
May 18, 2022
Comment on lines
+22
to
+25
| PIVOT MhcValue BY Haplotype IN | ||
| (select distinct Haplotype from snprc_ehr.MhcData order by Haplotype | ||
|
|
||
| ) |
Contributor
There was a problem hiding this comment.
Just a heads up, if you are running into perf issues and you know these haplotype values are constant, you can get better perf by hard coding them here.
Collaborator
Author
|
Thanks for the suggestion, but they may change in the future. So far, no performance issues.
Terry Hawkins
Director, Software Development
Texas Biomedical Research Institute
Southwest National Primate Research Center (SNPRC)
W: (210) 258-9617
E: ***@***.******@***.***>
From: Marty Pradere ***@***.***>
Sent: Wednesday, May 18, 2022 3:35 PM
To: LabKey/snprcEHRModules ***@***.***>
Cc: Terry Hawkins ***@***.***>; Author ***@***.***>
Subject: Re: [LabKey/snprcEHRModules] Added MHC Data Pivot report (PR #451)
[EXTERNAL]
@labkey-martyp approved this pull request.
________________________________
In snprc_ehr/resources/queries/snprc_ehr/MhcDataPivot.sql<#451 (comment)>:
+PIVOT MhcValue BY Haplotype IN
+(select distinct Haplotype from snprc_ehr.MhcData order by Haplotype
+
+)
Just a heads up, if you are running into perf issues and you know these haplotype values are constant, you can get better perf by hard coding them here.
—
Reply to this email directly, view it on GitHub<#451 (review)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AGKZVG5KID4DNSGNK6SQWATVKVIATANCNFSM5WJS4XMA>.
You are receiving this because you authored the thread.Message ID: ***@***.******@***.***>>
CONFIDENTIALITY NOTICE: This e-mail and any files and/or attachments transmitted, may contain privileged and confidential information and is intended solely for the exclusive use of the individual or entity to whom it is addressed. If you are not the intended recipient, you are hereby notified that any review, dissemination, distribution or copying of this e-mail and/or attachments is strictly prohibited. If you have received this e-mail in error, please immediately notify the sender stating that this transmission was misdirected; return the e-mail to sender; destroy all paper copies and delete all electronic copies from your system without disclosing its contents.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Rationale
New report for MHC data
Related Pull Requests
Changes