diff --git a/templates/page.html b/templates/page.html index 0ab4532..65a2361 100644 --- a/templates/page.html +++ b/templates/page.html @@ -151,24 +151,19 @@

Free

Structure your analysis

-
version: 0.2.0
-
code:
-
files:
-
- code/mycode.py
+
version: 0.3.0
inputs:
files:
-
- inputs/mydata.csv
+
- code/mycode.py
+
- inputs/mydata.csv
parameters:
myparameter: myvalue
-
environments:
-
- type: docker
-
image: johndoe/mypython:1.0
workflow:
type: cwl
file: workflow/myworkflow.cwl
outputs:
files:
-
-outputs/myplot.png
+
- results/myplot.png
more
@@ -181,14 +176,15 @@

Select a REANA cluster...

$export REANA_SERVER_URL=https://reana.cern.ch/
+
$export REANA_ACCESS_TOKEN=XXXXXXX

...or install your own

-
# install kubectl 1.9.1 and minikube 0.23.0
+
# install kubectl 1.11.2 and minikube 0.28.2
$sudo dpkg -i kubectl*.deb minikube*.deb
-
$minikube start --kubernetes-version="v1.6.4"
+
$minikube start --kubernetes-version="v1.11.2"
# install reana-cluster utility
$mkvirtualenv reana-cluster
$pip install reana-cluster
@@ -196,9 +192,9 @@

...or install your own

$reana-cluster init
$reana-cluster status
# set environment variables for reana-client
-
$eval $(reana-cluster env)
+
$eval $(reana-cluster env --include-admin-token)
-
more
+
more
@@ -208,21 +204,22 @@

...or install your own

Run your analysis

-
# install reana-client
-
$mkvirtualenv reana-client -p /usr/bin/python2.7
+
# install REANA client
+
$mkvirtualenv reana-client
$pip install reana-client
-
$reana-client ping
# create new workflow
-
$export REANA_WORKON=$(reana-client workflow create)
-
# upload runtime code and inputs
-
$reana-client code upload ./code/*
-
$reana-client inputs upload ./inputs/*
-
# start workflow and check progress
-
$reana-client workflow start
-
$reana-client workflow status
-
# download outputs
-
$reana-client outputs list
-
$reana-client outputs download myplot.png
+
$reana-client create -n my-analysis
+
$export REANA_WORKON=my-analysis
+
# upload input code and data to the workspace
+
$reana-client upload ./code ./data
+
# start computational workflow
+
$reana-client start
+
# check its progress
+
$reana-client status
+
# list workspace files
+
$reana-client list
+
# download output results
+
$reana-client download results/plot.png
more