Skip to content

traitecoevo/baadanalysis

 
 

Repository files navigation

Leaf mass per area, not total leaf area, drives differences in above-ground biomass distribution among woody plant functional types

This repository contains code needed to reproduce the article:

Duursma RA, Falster DS, "Leaf mass per area, not total leaf area, drives differences in above-ground biomass distribution among woody plant functional types", New Phytologist 212 (2): 368-376. doi: 10.1111/nph.14033

DOI

Running the code

All analyses were done in R, and the paper is written in LaTeX. All code needed to reproduce the submitted products is included in this repository. To reproduce this paper, run the code contained in the analysis.R file. Figures will be output to a directory called output and the paper and supplementary materials to the directory ms.

If you are reproducing these results on your own machine, first download the code and then install the required packages listed in the DESCRIPTION file. This can be achieved by opening the Rstudio project and running:

#install.packages("remotes")
remotes::install_deps()

You can access an interactive RStudio session with the required software pre-installed by opening a container hosted by Binder:

Launch Rstudio Binder

To ensure long-term computational reproducibility of this work, we have created a Docker image to enable others to reproduce these results on their local machines using the same software and versions we used to conduct the original analysis. Instructions for reproducing this work using the docker image are available at the bottom of the page.

Material included in the repository include:

  • data/: Raw data
  • R/: directory containing functions used in analysis
  • ms/: directory containing manuscript in LaTeX and accompanying style files
  • downloads/: directory containing a png image of a tree downloaded from the web
  • DESCRIPTION: A machine-readable compendium file containing key metadata and dependencies
  • LICENSE: License for the materials
  • Dockerfile & .binder/Dockerfile: files used to generate docker containers for long-term reproducibility

Running via Docker

If you have Docker installed, you can recreate the computing environment as follows in the terminal.

From the directory you'd like this repo saved in, clone the repository:

git clone https://github.com/traitecoevo/baadanalysis.git

Then fetch the container:

docker pull traitecoevo/baadanalysis

Navigate to the downloaded repo, then launch the container using the following code (it will map your current working directory inside the docker container):

docker run --user root -v $(pwd):/home/rstudio/ -p 8787:8787 -e DISABLE_AUTH=true traitecoevo/baadanalysis

The code above initialises a docker container, which runs an RStudio session accessed by pointing your browser to localhost:8787. For more instructions on running docker, see the info from rocker.

NOTE: Building the docker image

For posterity, the docker image was built off rocker/verse:3.6.1 container via the following command, in a terminal contained within the downloaded repo:

docker build -t traitecoevo/baadanalysis .

and was then pushed to dockerhub. The image used by binder builds off this container, adding extra features needed by binder, as described in rocker/binder.

Contributors

  • Daniel Falster
  • Saras Windecker (help with binder and reproducibility)

About

Analysis of BAAD (Duursma and Falster, New Phytologist, 2016)

Resources

License

Unknown, MIT licenses found

Licenses found

Unknown
LICENSE
MIT
LICENSE.md

Stars

Watchers

Forks

Packages

No packages published

Languages

  • R 64.3%
  • TeX 33.3%
  • Dockerfile 2.4%