Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Gibbsdavidl/2de9e15afe2005a8bde393471c17db8c to your computer and use it in GitHub Desktop.
Save Gibbsdavidl/2de9e15afe2005a8bde393471c17db8c to your computer and use it in GitHub Desktop.
BQ_CoV.sql
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