Next
until you get to the step below.Use Git from the Windows Command Prompt
and click on Next
.Next
. Keep Checkout Windows-style, commit Unix-style line endings
selected.Use Windows' default console window
and click on Next
.Next
then Finish
.This will provide you with both Git and Bash in the Git Bash program. If you make a mistake you may rerun the installer and select the appropriate options.
To fully set up your Mac for bioinformatics we recommend the Biostar Handbook website.
Alternatively to set up just git alone see:
For OS X 10.9 and higher, install Git for Mac by downloading and running the most
recent mavericks
installer from this list.
After installing Git,
there will not be anything in your /Applications folder, as Git is a command line program.
For older versions of OS X (10.5-10.8) use the most recent available installer
labelled snow-leopard
available here.
If Git is not already available on your machine you can try to install it via
your distro's package manager. For Debian/Ubuntu run sudo apt-get install git
and for Fedora run sudo yum install git
.
Git is a version control system that lets you track who made changes to what when and has options for easily updating a shared or public version of your code on github.com. You will need a supported web browser (current versions of Chrome, Firefox or Safari, or Internet Explorer version 9 or above).
You will need an account at github.com for parts of the Git lesson. Basic GitHub accounts are free. We encourage you to create a GitHub account if you don't have one already. Please consider what personal information you'd like to reveal. For example, you may want to review these instructions for keeping your email address private provided at GitHub.
The most commonly used command with git.
ssh-keygen
This will generate a password in ~/.ssh/id_rsa.pub
cat ~/.ssh/id_rsa.pub
Copy and paste the key into the Github -> Account -> Settings -> Add SSH key
Command we typically do once:
git clone <uri>
- clones a remote repositorygit add <filepath>
- adds a file to git trackingCommands we use all the time:
git status
- what is the current status of the repositorygit diff
- what has changed since the last commitgit push <uri>
- push the changes to remotegit pull <uri>
- pull and merge remoteFurther information:
For simulation we are going to use R, a statistical programming language. The software is open-source, interacts well with git, has many packages written by and for the bioinformatics community and is also useful for developing graphics and web app.
We are going to access R via a package called RStudio, which provides additional resources including a window system which facilitates installing packages , accessing the help files, and documenting your work. RStudio is also free.
All of this software is available on Macs, Windows, and Linux. Mostly it works identically on all types of computers, although I have noticed that sometimes the versions are out of sync.
To get started, please install R and RStudio as directed below.
Select a CRAN mirror. (This is the computer that you are downloading from. It is advisable to select a mirror that is geographically close.)
Select the appropriate version for the type of computer you are using.
Install the downloaded software just like any other software on your computer.
Go to https://www.rstudio.com/
Click on the Download button.
Scroll down to "Download R Studio Desktop".
Select the appropriate installer.
Install the downloaded software.
Click on the R Studio icon. This should open R Studio.
Microsoft Word is NOT a text editor. Using Word to edit text will will eventually cause (devious) errors. Best if you start using a proper text editor. Essential features:
TAB
characters versus multiple SPACE
characters.
Mixing up TABS
and SPACES
is a very common error. Copy-pasting from a web
page often turns a TAB
into SPACE
characters (yes, it very annoying!)
You need the ability to see the difference between these otherwise invisible
characters if necessary.Unix
, Windows
or Mac OS 9
endings
(the new Mac OSX
uses Unix
line endings). Typically all files should have a Unix
line ending mode.
Your editor needs to have the ability to convert line endings to Unix
format.Personal preference :
Pandoc can convert documents across formats: markdown
to html
or pdf
etc.
On Mac OSX:
brew install pandoc
On windows visit the Pandoc website.