Last active
April 30, 2023 21:57
-
-
Save agrueneberg/f00e52c7d2cc2d666609e983df8ec3d7 to your computer and use it in GitHub Desktop.
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
#!/usr/bin/env Rscript | |
library(BGLR) | |
data(mice) | |
gzmice <- gzfile("mice.raw.gz", "w") | |
write.table(cbind(mice.pheno, mice.X), gzmice, row.names = F, quote = F) | |
close(gzmice) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment