Skip to content

Commit 1ec30fc

Browse files
committed
Merge remote-tracking branch 'origin/main' into release
2 parents 61e8478 + 09030ed commit 1ec30fc

File tree

5 files changed

+17
-9
lines changed

5 files changed

+17
-9
lines changed

.zenodo.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"name": "bamiwoaluko"
1616
},
1717
{
18-
"orcid": "https://orcid.org/0000-0002-6206-4638>",
18+
"orcid": "https://orcid.org/0000-0002-6206-4638",
1919
"name": "Benjamin Carr"
2020
},
2121
{
@@ -36,7 +36,7 @@
3636
"name": "Ngumih Fien"
3737
},
3838
{
39-
"name": "gathoni-k"
39+
"name": "Mary Gathoni"
4040
},
4141
{
4242
"name": "Henry Liu"

AUTHORS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Thank you to the following contributors (in alphabetical order by user name):
88
* Eugene Miloslavsky (@emiloslavsky)
99
* Robin Long (@longr) <https://orcid.org/0000-0003-2249-645X>
1010
* Ngumih Fien (@Fienne)
11-
* @gathoni-k
11+
* Mary Gathoni (@gathoni-k)
1212
* Henry Liu (@HenryLiu0)
1313
* Marijke J. van Baren (@Jeltje)
1414
* @jessMaia

CONTRIBUTING.md

+9-2
Original file line numberDiff line numberDiff line change
@@ -102,14 +102,21 @@ tool. You must have a recent version of Python 3.6+ installed to build the proje
102102
locally. It is also recommended having `make` (otherwise look at the commands used
103103
in `Makefile`).
104104

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).
105112
```bash
106113
# Create and activate a virtual environment
107114
python -m venv venv
108115
source venv/bin/activate
109116
# update the version of pip, setuptools, and wheel
110117
(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]"
113120
# Create the HTML to visualize locally
114121
(venv) make html
115122
(venv) open _build/index.html

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[![DOI for the latest version](https://zenodo.org/badge/89621457.svg)](https://zenodo.org/badge/latestdoi/89621457)
22

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)
54

65
This is the source of the official user guide for the Common Workflow Language standards.
76

src/topics/using-containers.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,10 @@ used a container called `node:slim`.
5252
Provide a "hello.js" and invoke `cwltool` providing the tool description and the
5353
input object on the command line:
5454

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
5759
```
5860

5961
```{runcmd} cwltool docker.cwl docker-job.yml

0 commit comments

Comments
 (0)