Created
November 15, 2014 23:49
-
-
Save jnpaulson/355c3e838627913a8945 to your computer and use it in GitHub Desktop.
grab data from the american gut consortium
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
#!/bin/bash | |
# grab the biom data | |
wget https://github.com/biocore/American-Gut/raw/master/data/PGP/PGP_100nt.biom.gz | |
wget https://github.com/biocore/American-Gut/raw/master/data/HMP/HMPv35_100nt.biom.gz | |
wget https://github.com/biocore/American-Gut/raw/master/data/GG/GG_100nt.biom.gz | |
wget https://github.com/biocore/American-Gut/raw/master/data/AG/AG_100nt.biom.gz | |
gunzip * | |
# grab the phenodata | |
wget https://github.com/biocore/American-Gut/raw/master/data/PGP/PGP_100nt.txt | |
wget https://github.com/biocore/American-Gut/raw/master/data/HMP/HMPv35_100nt.txt | |
wget https://github.com/biocore/American-Gut/raw/master/data/GG/GG_100nt.txt | |
wget https://raw.githubusercontent.com/biocore/American-Gut/master/data/AG/AG_100nt.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment