Created
March 19, 2016 01:57
-
-
Save kozo2/32b66ac28ab22ce3afb5 to your computer and use it in GitHub Desktop.
bioruby tutorial
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "cells": [ | |
| { | |
| "cell_type": "markdown", | |
| "metadata": { | |
| "collapsed": true | |
| }, | |
| "source": [ | |
| "# BioRuby Tutorial" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "metadata": {}, | |
| "source": [ | |
| "* Copyright (C) 2001-2003 KATAYAMA Toshiaki <k .at. bioruby.org>\n", | |
| "* Copyright (C) 2005-2011 Pjotr Prins, Naohisa Goto and others" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "metadata": {}, | |
| "source": [ | |
| "This document was last modified: 2011/10/14\n", | |
| "Current editor: Michael O'Keefe <okeefm (at) rpi (dot) edu>\n", | |
| "The latest version resides in the GIT source code repository: [Tutorial.rd](https://github.com/bioruby/bioruby/blob/master/doc/Tutorial.rd)." | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "metadata": {}, | |
| "source": [ | |
| "## Introduction" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "metadata": {}, | |
| "source": [ | |
| "This is a tutorial for using Bioruby. A basic knowledge of Ruby is required.\n", | |
| "If you want to know more about the programming language, we recommend the\n", | |
| "latest Ruby book [Programming Ruby](http://www.pragprog.com/titles/ruby)\n", | |
| "by Dave Thomas and Andy Hunt - the first edition can be read online\n", | |
| "[here](http://www.ruby-doc.org/docs/ProgrammingRuby/)." | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "metadata": {}, | |
| "source": [ | |
| "For BioRuby you need to install Ruby and the BioRuby package on your computer\n", | |
| "You can check whether Ruby is installed on your computer and what\n", | |
| "version it has with the\n", | |
| "```shell\n", | |
| " % ruby -v\n", | |
| "```\n", | |
| "command. You should see something like:\n", | |
| "```\n", | |
| " ruby 1.9.2p290 (2011-07-09 revision 32553) [i686-linux]\n", | |
| "```\n", | |
| "If you see no such thing you'll have to install Ruby using your installation\n", | |
| "manager. For more information see the\n", | |
| "[Ruby](http://www.ruby-lang.org/en/) website.\n", | |
| "\n", | |
| "With Ruby download and install Bioruby using the links on the\n", | |
| "[Bioruby](http://bioruby.org/) website. The recommended installation is via \n", | |
| "RubyGems:\n", | |
| "```shell\n", | |
| "gem install bio\n", | |
| "```\n", | |
| "See also the Bioruby [wiki](http://bioruby.open-bio.org/wiki/Installation).\n", | |
| "\n", | |
| "A lot of BioRuby's documentation exists in the source code and unit tests. To\n", | |
| "really dive in you will need the latest source code tree. The embedded rdoc\n", | |
| "documentation can be viewed online at\n", | |
| "[bioruby's rdoc](http://bioruby.org/rdoc/). But first lets start!" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "metadata": {}, | |
| "source": [ | |
| "## Trying Bioruby" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": null, | |
| "metadata": { | |
| "collapsed": true | |
| }, | |
| "outputs": [], | |
| "source": [] | |
| } | |
| ], | |
| "metadata": { | |
| "kernelspec": { | |
| "display_name": "Ruby 2.1.5", | |
| "language": "ruby", | |
| "name": "ruby" | |
| }, | |
| "language_info": { | |
| "file_extension": ".rb", | |
| "mimetype": "application/x-ruby", | |
| "name": "ruby", | |
| "version": "2.1.5" | |
| } | |
| }, | |
| "nbformat": 4, | |
| "nbformat_minor": 0 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment