Time | Activity |
---|---|
10:00 - 11:00 | Registration |
10:30 - 11:00 | Posters & Refreshments |
11:00 - 12:00 | Student oral presentations (4x 15 min slots) |
12:00 - 13:00 | Introduction to Bioinformatics (2x 30 min slots) |
13:00 - 14:00 | Posters, Exhibitions, and Lunch |
14:00 - 15:30 | Workshop 1 |
15:30 - 16:00 | Posters & Refreshments |
16:00 - 17:30 | Workshop 2 |
17:30 - 18:00 | Conference Close (Prizes & Networking) |
MyBinder is a service that allows you to run Jupyter notebooks in the cloud (i.e. on someone else's hardware). This course is provided as interactive notebooks via this service, and you can start up an instance by clicking on the button below:
This approach has the advantage that it requires no further configuration: all materials and tools are pre-installed, and ready to go.
Setting up the course materials to run on your own machine involves following stages, which will be described one-by-one below:
To install and run these materials locally, you will require:
The course materials (notebooks, presentations, data) are available for download at the link below:
Download the compressed (.zip
) file to a suitable location and unpack it. This will place the materials in a subdirectory called Teaching-SfAM-ECR
.
Alternatively, if you have git
installed, you can clone the most current version of the materials to your local machine with the command:
git clone https://github.com/widdowquinn/Teaching-SfAM-ECS.git
sfam-workshop
)mkdir sfam-workshop
cd sfam-workshop
cd Teaching-SfAM-ECS # if you cloned the repository
cd Teaching-SfAM-ECS-1.0 # if you extracted the .zip/.tar.gz file
Anaconda
channel for bioconda
conda config --add channels bioconda
Jupyter
in the conda
environmentconda install jupyter
conda
environment called sfam
, installing the necessary Python
libraries (accept the changes requested).conda create --name sfam python=3 jupyter numpy pandas seaborn bioservices biopython
conda
environment:On Windows:
activate sfam
On OSX/Linux
source activate sfam
You should see that your command-line prompt has changed, and now starts with (sfam)
. This indicates that you are now working within a 'protected' Python
environment, specific for this workshop.
Jupyter
, and enable iPython widgetspython -m ipykernel install --user --name Python3_SfAM --display-name "Python 3 (SfAM)"
jupyter nbextension enable --py --sys-prefix widgetsnbextension
jupyter notebook index.ipynb
to begin at the top page of the workshopjupyter notebook index.ipynb