Created
May 23, 2017 22:41
-
-
Save Gibbsdavidl/2de9e15afe2005a8bde393471c17db8c to your computer and use it in GitHub Desktop.
BQ_CoV.sql
This file contains 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
SELECT | |
project_short_name, | |
STDDEV_SAMP( protein_expression ) / AVG( protein_expression ) AS CoV | |
FROM | |
[isb-cgc:TCGA_hg19_data_v0.Protein_Expression] | |
group by | |
project_short_name | |
order by | |
CoV DESC |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment