File tree Expand file tree Collapse file tree 2 files changed +6
-23
lines changed Expand file tree Collapse file tree 2 files changed +6
-23
lines changed Original file line number Diff line number Diff line change @@ -16,25 +16,22 @@ IPython2CWL is a tool for converting `IPython <https://ipython.org/>`_ Jupyter N
16
16
17
17
from ipython2cwl.iotypes import CWLFilePathInput, CWLFilePathOutput
18
18
import csv
19
- input_filename: CWLFilePathInput = ' data.csv'
19
+ input_filename: ' CWLFilePathInput' = ' data.csv'
20
20
with open (input_filename) as f:
21
21
csv_reader = csv.reader(f)
22
22
data = [line for line in csv_reader]
23
23
number_of_lines = len (data)
24
- result_file: CWLFilePathOutput = ' number_of_lines.txt'
24
+ result_file: ' CWLFilePathOutput' = ' number_of_lines.txt'
25
25
with open (result_file, ' w' ) as f:
26
26
f.write(str (number_of_lines))
27
27
28
28
29
29
------------------------------------------------------------------------------------------
30
30
31
-
32
- .. toctree ::
33
- :maxdepth: 2
34
- :caption: Contents:
35
-
36
-
37
- ipython2cwl
31
+ IPython2CWL is based on `repo2docker <https://github.com/jupyter/repo2docker >`_, the same tool
32
+ used by `mybinder <https://mybinder.org/ >`_. Now, by writing Jupyter Notebook and publish them, including repo2docker
33
+ configuration, the community can not only execute the notebooks remotely but also to use them as steps in scientific
34
+ workflows.
38
35
39
36
Indices and tables
40
37
==================
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments