-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update REANA 0.3.0 getting started #23
Update REANA 0.3.0 getting started #23
Conversation
diegodelemos
commented
Sep 27, 2018
- Closes getting started: update for v0.3.0 #20.
a7038ae
to
225127b
Compare
@tiborsimko, updated with original version and keeping CWL example instead of adding Serial. |
templates/page.html
Outdated
<div class="line comment"># upload runtime code and inputs</div> | ||
<div class="line"><span class="prompt">$</span>reana-client code upload ./code/*</div> | ||
<div class="line"><span class="prompt">$</span>reana-client inputs upload ./inputs/*</div> | ||
<div class="line"><span class="prompt">$</span>export REANA_WORKON=$(reana-client create)</div> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For the workflow creation, what about using:
$ reana-client create -n my-analysis
$ export REANA_WORKON=my-analysis
May be more readable, see reanahub/reana#87
Let's harmonise amongst the two PRs...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am on it!
225127b
to
fc1f580
Compare
Updated |
fc1f580
to
fd030b2
Compare
templates/page.html
Outdated
<div class="line">inputs:</div> | ||
<div class="line tab">files:</div> | ||
<div class="line tab">- code/mycode.py</div> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What about additional indentation for items under files:
(here and below) so that it would resemble parameters:
<div class="line"><span class="prompt">$</span>reana-client create -n my-analysis</div> | ||
<div class="line"><span class="prompt">$</span>export REANA_WORKON=my-analysis</div> | ||
<div class="line comment"># upload input code and data to the workspace</div> | ||
<div class="line"><span class="prompt">$</span>reana-client upload ./code ./data</div> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(1) Remove explicit ./code
and ./data
in the command to have harmony with the download command (=choosing implicit way), or (2) add results/plot.png
to download command (=choosing explicit way).
fd030b2
to
ad62b90
Compare