File tree 5 files changed +17
-9
lines changed
5 files changed +17
-9
lines changed Original file line number Diff line number Diff line change 15
15
"name" : " bamiwoaluko"
16
16
},
17
17
{
18
- "orcid" : " https://orcid.org/0000-0002-6206-4638> " ,
18
+ "orcid" : " https://orcid.org/0000-0002-6206-4638" ,
19
19
"name" : " Benjamin Carr"
20
20
},
21
21
{
36
36
"name" : " Ngumih Fien"
37
37
},
38
38
{
39
- "name" : " gathoni-k "
39
+ "name" : " Mary Gathoni "
40
40
},
41
41
{
42
42
"name" : " Henry Liu"
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ Thank you to the following contributors (in alphabetical order by user name):
8
8
* Eugene Miloslavsky (@emiloslavsky )
9
9
* Robin Long (@longr ) < https://orcid.org/0000-0003-2249-645X >
10
10
* Ngumih Fien (@Fienne )
11
- * @gathoni-k
11
+ * Mary Gathoni ( @gathoni-k )
12
12
* Henry Liu (@HenryLiu0 )
13
13
* Marijke J. van Baren (@Jeltje )
14
14
* @jessMaia
Original file line number Diff line number Diff line change @@ -102,14 +102,21 @@ tool. You must have a recent version of Python 3.6+ installed to build the proje
102
102
locally. It is also recommended having ` make ` (otherwise look at the commands used
103
103
in ` Makefile ` ).
104
104
105
+ The ` dot ` program from Graphviz is needed to render some of the diagrams.
106
+
107
+ * For Debian/Ubuntu users:
108
+ ``` bash
109
+ sudo apt get install graphviz
110
+ ```
111
+ * For non-Debian/Ubuntu users, follow the directions at [ the GraphViz download site] ( https://graphviz.org/download ) .
105
112
``` bash
106
113
# Create and activate a virtual environment
107
114
python -m venv venv
108
115
source venv/bin/activate
109
116
# update the version of pip, setuptools, and wheel
110
117
(venv) pip install -U pip setuptools wheel
111
- # Install the dependencies in your virtual environment
112
- (venv) pip install .[all]
118
+ # Install all the dependencies in your virtual environment.
119
+ (venv) pip install " .[all]"
113
120
# Create the HTML to visualize locally
114
121
(venv) make html
115
122
(venv) open _build/index.html
Original file line number Diff line number Diff line change 1
1
[ ![ DOI for the latest version] ( https://zenodo.org/badge/89621457.svg )] ( https://zenodo.org/badge/latestdoi/89621457 )
2
2
3
- [ ![ Syntax Check] ( https://travis-ci.org/common-workflow-language/user_guide.svg?branch=main )] ( https://travis-ci.org/common-workflow-language/user_guide )
4
-
3
+ [ ![ Syntax Check] ( https://app.travis-ci.com/common-workflow-language/user_guide.svg?branch=main )] ( https://app.travis-ci.com/common-workflow-language/user_guide )
5
4
6
5
This is the source of the official user guide for the Common Workflow Language standards.
7
6
Original file line number Diff line number Diff line change @@ -52,8 +52,10 @@ used a container called `node:slim`.
52
52
Provide a "hello.js" and invoke ` cwltool ` providing the tool description and the
53
53
input object on the command line:
54
54
55
- ``` {code-block} console
56
- $ echo "console.log(\"Hello World\");" > hello.js
55
+ ``` {literalinclude} /_includes/cwl/using-containers/hello.js
56
+ : language: javascript
57
+ : caption: " `hello.js`"
58
+ : name: hello .js
57
59
```
58
60
59
61
``` {runcmd} cwltool docker.cwl docker-job.yml
You can’t perform that action at this time.
0 commit comments