You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
And github desktop will also help https://desktop.github.com/. If you are not familiar with command line stuff this is a good option – even if you are familiar this will allow you to not have to look up a bunch of git commands, although I recommend you learn to use github regardless
You can download the repo as a zip
In the unzipped files replace the jupyter notebook there by your own (do not place spaces in the notebook name). In other words: replace tellurium.ipynb with <YOUR_NOTEBOOK_NAME>.ipynb
In the unzipped files, under the folder middleware, open the file invoke (use notepad or notepad++) and replace tellurium.ipynb with the name of your jupyter notebook
Also in the middleware/invoke file replace "-t tellurium" with "-t short_tool_name". short_tool_name will be the name nanohub uses in the url for your tool and to call it, it must match "Tool Name" in https://nanohub.org/tools/create. It must be 3-15 alphanumeric characters, no spaces. Once you register your tool, you cannot change this name, so be careful to pick a good one.
If you had already done this before December 18 2020 either pull again from the repo or change "start_jupyter -T @tool tellurium.ipynb" to "start_jupyter -t -T @tool tellurium.ipynb"
If you want your notebook to open on app mode you have to add a -A before the -T in that string
The "not short" tool name will be the Title in that box, that's the one people will mainly see
On github make sure middleware/invoke is executable; open the file in github, the upper left corner will say if it is or not
If it isn't: open gitbash, go to the folder containing your repo and issue the command git update-index --chmod=+x middleware/invoke and push the changes to the repo