Skip to content

Commit c5cf43a

Browse files
committed
update doc
1 parent 86ae407 commit c5cf43a

File tree

2 files changed

+6
-23
lines changed

2 files changed

+6
-23
lines changed

docs/index.rst

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,25 +16,22 @@ IPython2CWL is a tool for converting `IPython <https://ipython.org/>`_ Jupyter N
1616
1717
from ipython2cwl.iotypes import CWLFilePathInput, CWLFilePathOutput
1818
import csv
19-
input_filename: CWLFilePathInput = 'data.csv'
19+
input_filename: 'CWLFilePathInput' = 'data.csv'
2020
with open(input_filename) as f:
2121
csv_reader = csv.reader(f)
2222
data = [line for line in csv_reader]
2323
number_of_lines = len(data)
24-
result_file: CWLFilePathOutput = 'number_of_lines.txt'
24+
result_file: 'CWLFilePathOutput' = 'number_of_lines.txt'
2525
with open(result_file, 'w') as f:
2626
f.write(str(number_of_lines))
2727
2828
2929
------------------------------------------------------------------------------------------
3030

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.
3835

3936
Indices and tables
4037
==================

docs/ipython2cwl.rst

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)