├── .gitignore ├── README.md └── images ├── cbiomes-01.png └── cbiomesgravatar.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | devel 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CBIOMES Community 2 | 3 | The Simons Collaboration on Computational Biogeochemical Modeling of Marine Ecosystems (CBIOMES; ) seeks to develop and apply quantitative models of the structure and function of marine microbial communities at seasonal and basin scales. 4 | 5 | ![CBIOMES logo](images/cbiomes-01.png) 6 | 7 | -------------------------------------------------------------------------------- /images/cbiomes-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBIOMES/Community/7ffe7a94a82ba26eea937f8e739f242c1954cece/images/cbiomes-01.png -------------------------------------------------------------------------------- /images/cbiomesgravatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CBIOMES/Community/7ffe7a94a82ba26eea937f8e739f242c1954cece/images/cbiomesgravatar.png --------------------------------------------------------------------------------