├── .gitignore ├── Gemfile ├── LICENSE ├── README.md ├── _config.yml ├── _config_dev.yml ├── _data └── article.yml ├── _figures ├── cell-culture-figure.md ├── cell-culture-table.md └── phyllotaxis.md ├── _includes ├── affiliation.html ├── author.html ├── award.html ├── contribution.html └── section.html ├── _layouts ├── article.html └── figure.html ├── _sections ├── abstract.md ├── acknowledgments.md ├── discussion.md ├── introduction.md ├── methods.md └── results.md ├── data ├── cell-culture │ ├── box-chart.png │ └── figure.png └── phyllotaxis │ ├── README.md │ ├── figure.png │ ├── index.html │ └── viz.js ├── index.md ├── references.md └── serve.sh /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | Gemfile.lock 4 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerJ/paper-now/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerJ/paper-now/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerJ/paper-now/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerJ/paper-now/HEAD/_config.yml -------------------------------------------------------------------------------- /_config_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerJ/paper-now/HEAD/_config_dev.yml -------------------------------------------------------------------------------- /_data/article.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerJ/paper-now/HEAD/_data/article.yml -------------------------------------------------------------------------------- /_figures/cell-culture-figure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerJ/paper-now/HEAD/_figures/cell-culture-figure.md -------------------------------------------------------------------------------- /_figures/cell-culture-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerJ/paper-now/HEAD/_figures/cell-culture-table.md -------------------------------------------------------------------------------- /_figures/phyllotaxis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerJ/paper-now/HEAD/_figures/phyllotaxis.md -------------------------------------------------------------------------------- /_includes/affiliation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerJ/paper-now/HEAD/_includes/affiliation.html -------------------------------------------------------------------------------- /_includes/author.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerJ/paper-now/HEAD/_includes/author.html -------------------------------------------------------------------------------- /_includes/award.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerJ/paper-now/HEAD/_includes/award.html -------------------------------------------------------------------------------- /_includes/contribution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerJ/paper-now/HEAD/_includes/contribution.html -------------------------------------------------------------------------------- /_includes/section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerJ/paper-now/HEAD/_includes/section.html -------------------------------------------------------------------------------- /_layouts/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerJ/paper-now/HEAD/_layouts/article.html -------------------------------------------------------------------------------- /_layouts/figure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerJ/paper-now/HEAD/_layouts/figure.html -------------------------------------------------------------------------------- /_sections/abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerJ/paper-now/HEAD/_sections/abstract.md -------------------------------------------------------------------------------- /_sections/acknowledgments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerJ/paper-now/HEAD/_sections/acknowledgments.md -------------------------------------------------------------------------------- /_sections/discussion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerJ/paper-now/HEAD/_sections/discussion.md -------------------------------------------------------------------------------- /_sections/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerJ/paper-now/HEAD/_sections/introduction.md -------------------------------------------------------------------------------- /_sections/methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerJ/paper-now/HEAD/_sections/methods.md -------------------------------------------------------------------------------- /_sections/results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerJ/paper-now/HEAD/_sections/results.md -------------------------------------------------------------------------------- /data/cell-culture/box-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerJ/paper-now/HEAD/data/cell-culture/box-chart.png -------------------------------------------------------------------------------- /data/cell-culture/figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerJ/paper-now/HEAD/data/cell-culture/figure.png -------------------------------------------------------------------------------- /data/phyllotaxis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerJ/paper-now/HEAD/data/phyllotaxis/README.md -------------------------------------------------------------------------------- /data/phyllotaxis/figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerJ/paper-now/HEAD/data/phyllotaxis/figure.png -------------------------------------------------------------------------------- /data/phyllotaxis/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerJ/paper-now/HEAD/data/phyllotaxis/index.html -------------------------------------------------------------------------------- /data/phyllotaxis/viz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerJ/paper-now/HEAD/data/phyllotaxis/viz.js -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: article 3 | --- 4 | -------------------------------------------------------------------------------- /references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerJ/paper-now/HEAD/references.md -------------------------------------------------------------------------------- /serve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeerJ/paper-now/HEAD/serve.sh --------------------------------------------------------------------------------