Skip to content

Instantly share code, notes, and snippets.

@rociotmartinez
Last active February 6, 2018 14:32
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 rociotmartinez/7284e38817fe3ba09aca515c4f845bdb to your computer and use it in GitHub Desktop.
Save rociotmartinez/7284e38817fe3ba09aca515c4f845bdb to your computer and use it in GitHub Desktop.
Frac-seq BECs GLM code
# This is the code to be used in SAS to perform differential expression
ods output lsmeans=ftot_lsmean_status;
ods output modelanova=ftot_model_status;
proc glm data=finaltotal order=internal outstat=ftot_glm_results ;
class status ;
model pct = status / ss3 ;
lsmeans status / out=ftot_pct_means;
by transcript;
run; quit;
ods output close;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment