2020-10-26-galaxy-fates

Online Galaxy Training on Functionally Assembled Terrestrial Ecosystem Simulator (FATES): Day-2

HackMD mechanics

Note

Workflow hub

also available as a shared workflow (shared data –> workflows (then search for fates)).

Galaxy JupyterLab

https://training.galaxyproject.org/training-material/topics/climate/tutorials/fates-jupyterlab/tutorial.html

Check your run

%%bash
cd $HOME/work/fates_alp1
ls -la
import os
import xarray as xr
xr.set_options(display_style="html")
%matplotlib inline

case = 'fates_alp1'
path = os.path.join(os.getenv('HOME'), 'archive', case, 'lnd', 'hist')
dset = xr.open_dataset(path + '/fates_alp1.clm2.h0.2000-01.nc')
dset
dset['CANOPY_AREA_BY_AGE'].plot(aspect=3, size=6)  #(aspect=3, size=6, col='fates_levage', col_wrap=1)

Feedback (from today and more generally for future CLM-FATES Galaxy tools & JupyterLab)

Question