Skip to content

Commit 858c0ec

Browse files
authored
Add contents.ipynb as start page (#14)
* try adding workspaces * add contents * Update README, remove unused workspace stuff
1 parent 4e4995a commit 858c0ec

File tree

4 files changed

+95
-7
lines changed

4 files changed

+95
-7
lines changed

0_jupyter_intro.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
},
1010
{
1111
"cell_type": "code",
12-
"execution_count": 1,
12+
"execution_count": null,
1313
"metadata": {},
1414
"outputs": [],
1515
"source": [
@@ -187,7 +187,7 @@
187187
"name": "python",
188188
"nbconvert_exporter": "python",
189189
"pygments_lexer": "ipython3",
190-
"version": "3.7.3"
190+
"version": "3.7.10"
191191
},
192192
"toc": {
193193
"base_numbering": 1,

README.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/openpathsampling/ops_tutorial/HEAD?urlpath=lab)
1+
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/openpathsampling/ops_tutorial/HEAD?urlpath=lab/tree/contents.ipynb)
22
![Tests](https://github.com/openpathsampling/ops_tutorial/workflows/Tests/badge.svg)
33
![GitHub last commit](https://img.shields.io/github/last-commit/openpathsampling/ops_tutorial)
44

@@ -29,7 +29,7 @@ and
2929

3030
If you'd prefer not to install things locally, you can try out the tutorial
3131
using [this Binder
32-
link](https://mybinder.org/v2/gh/openpathsampling/ops_tutorial/HEAD?urlpath=lab).
32+
link](https://mybinder.org/v2/gh/openpathsampling/ops_tutorial/HEAD?urlpath=lab/tree/contents.ipynb).
3333
Performance is likely to be better on your own computer than on Binder, but
3434
Binder is useful if you can't/don't want to install the software.
3535

@@ -100,9 +100,11 @@ Notebook 4 is optional, and has no exercises in it. It provides setup for a
100100
very different kind of system (a 2D toy model), and illustrates that the
101101
overall setup process is the same, regardless of the underlying engine.
102102

103-
Notebook 5 contains some more advanced exercises related to TIS, and also shows
104-
how to use the OPS command line interface. In addition to the requirements
105-
listed above, it requires installation of `openpathsampling-cli`.
103+
Notebooks 5-8 contain some more advanced exercises related to TIS, and also
104+
shows how to use the OPS command line interface. In addition to the
105+
requirements listed above, they requires installation of
106+
`openpathsampling-cli`. These are for more advanced users, and aren't usually
107+
part of the introduction for beginners.
106108

107109
## History
108110

contents.ipynb

+85
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"id": "778a3190-a41d-4298-ac33-3cf9d23ebd74",
6+
"metadata": {},
7+
"source": [
8+
"# Welcome to the OpenPathSampling Tutorial!\n",
9+
"\n",
10+
"This repository contains several tutorials for with OpenPathSampling. These can be run on your own machine, or online via Binder. See the repository's README for installation instruction to run this on your own computer. Click on links to launch each notebook.\n",
11+
"\n",
12+
"<!-- If you're using this with Binder, the workspace links will set up the JupyterLab interface to run each particular tutorial. -->"
13+
]
14+
},
15+
{
16+
"cell_type": "markdown",
17+
"id": "cee8117e-8180-4ea2-a1dd-23159cc0d148",
18+
"metadata": {},
19+
"source": [
20+
"## Beginner Tutorial: TPS and Committor Analysis\n",
21+
"\n",
22+
"<!-- [Binder: Beginner Tutorial Workspace]() (Note: this is the default workspace in Binder.) -->\n",
23+
"\n",
24+
"Our standard introductory tutorial consists of notebooks 1-3, which deal with solvated alanine dipeptide. One of the main purposes of these notebooks is to illustrate how OpenPathSampling plays a role within a broader ecosystem of scientific software. You will use general scientific Python tools such as `matplotlib` for plotting, and `numpy` or `pandas` for analysis tools. You will also use tools specific to molecular simulation, such as `openmm`, `nglview`, `mdtraj`, and `openmmtools`.\n",
25+
"\n",
26+
"* [0_jupyter_intro.ipynb](0_jupyter_intro.ipynb): Introduction to Jupyter notebooks (optional)\n",
27+
"* [1_tps_sampling_tutorial.ipynb](1_tps_sampling_tutorial.ipynb): Setting up TPS\n",
28+
"* [2_tps_analysis_tutorial.ipynb](2_tps_analysis_tutorial.ipynb): Analyzing TPS\n",
29+
"* [3_committor_analysis_tutorial.ipynb](3_committor_analysis_tutorial.ipynb): Analyzing a committor simulation"
30+
]
31+
},
32+
{
33+
"cell_type": "markdown",
34+
"id": "2e64f5ac-bd87-4a86-984c-f780757f3c22",
35+
"metadata": {},
36+
"source": [
37+
"## Beginner Bonus/Intermediate Starter: TIS on a toy model\n",
38+
"\n",
39+
"<!-- [Binder: Intermediate Tutorial Workspace]() -->\n",
40+
"\n",
41+
"This is a simple example, and takes much less time to complete than the other tutorials. You can often do this as an extra example after completing the beginner tutorial.\n",
42+
"\n",
43+
"* [4_mstis_sampling_tutorial.ipynb](4_mstis_sampling_tutorial.ipynb): Setting up and running multiple state TIS\n"
44+
]
45+
},
46+
{
47+
"cell_type": "markdown",
48+
"id": "469a1cc9-aa21-4854-ac3c-40b9981c067b",
49+
"metadata": {},
50+
"source": [
51+
"## Advanced Tutorial: Customizing Move Schemes and the OPS Command Line\n",
52+
"\n",
53+
"<!-- [Binder: Advanced Tutorial Workspace]() -->\n",
54+
"\n",
55+
"For more advanced users, we have a tutorial that deals with more complex simulation setups and with using the OPS command line interface. Really, these are two independent tutorials: notebooks 5 and 6 make one tutorial, and notebooks 7 and 8 make the other.\n",
56+
"\n",
57+
"* [5_custom_shooting_setup.ipynb](5_custom_shooting_setup.ipynb): TPS with 2-way shooting; changing shooting point selectors\n",
58+
"* [6_custom_shooting_analysis.ipynb](6_custom_shooting_analysis.ipynb): Analyzing simulations with different shooting point selectors\n",
59+
"* [7_parallel_tis_setup.ipynb](7_parallel_tis_setup.ipynb): Setting up embarrassingly parallel TIS and a custom RETIS\n",
60+
"* [8_parallel_tis_analysis.ipynb](8_parallel_tis_analysis.ipynb): Comparing parallel TIS to RETIS"
61+
]
62+
}
63+
],
64+
"metadata": {
65+
"kernelspec": {
66+
"display_name": "Python 3",
67+
"language": "python",
68+
"name": "python3"
69+
},
70+
"language_info": {
71+
"codemirror_mode": {
72+
"name": "ipython",
73+
"version": 3
74+
},
75+
"file_extension": ".py",
76+
"mimetype": "text/x-python",
77+
"name": "python",
78+
"nbconvert_exporter": "python",
79+
"pygments_lexer": "ipython3",
80+
"version": "3.7.10"
81+
}
82+
},
83+
"nbformat": 4,
84+
"nbformat_minor": 5
85+
}

devtools/download-files

+1
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ curl -Lk -o ${figshare_ID}.zip \
99
unzip -d $figshare_ID ${figshare_ID}.zip
1010

1111
mv $figshare_ID/* ./
12+
rm -f ${figshare_ID}.zip

0 commit comments

Comments
 (0)