Skip to content

Instantly share code, notes, and snippets.

@jnpaulson
Created November 15, 2014 23:49
Show Gist options
  • Save jnpaulson/355c3e838627913a8945 to your computer and use it in GitHub Desktop.
Save jnpaulson/355c3e838627913a8945 to your computer and use it in GitHub Desktop.
grab data from the american gut consortium
#!/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