liu-wq / Reg_Evo_Primates

This is a GitHub repo for a project studying gene expression and methylation in humans, chimpanzees, and rhesus macaques. The website of this work can be found at:

Home Page:http://lauren-blake.github.io/Reg_Evo_Primates/analysis/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Reg_Evo_Primates

A project analyzing gene expression and methylaion (RNA-Seq and BS-seq) in primates.

This site was made from ashlar workflow.

See the contributing guidelines to add a new analysis.

Some notes

Producing and publishing the website

Option 1: All contents for my eyes only

Open index.html. This is the homepage of your unpubished website. You are DONE!

If you choose this option, you only have the master branch. The gitignore is set up to not to push htmls, pngs, pdfs, etc to the remote master brach, so edit the .gitignore to add these files if you want to add them to the remote directory.

Option 2: Publish it! Keep a two-branch workflow.

Copy the master branch into a new branch named gh-pages.

git checkout -b gh-pages 

Use knitr to turn Rmds into htmls. I mostly use RStudio to render Rmds. Sometimes make file is useful for reproducing a large number of htmls or for rendering Rmds under customized options.

cd analysis
make

Add files to git index and record changes in the local repository.

git add -f --all
git commit -m "Build site"

Update remote repository with the local changes.

git push origin gh-pages

The site address is under the analysis directory since the contents are under the analysis directory.

https://jhsiao999.github.io/ashlar-trial/analysis

A typical git workflow

This two-branch workflow is set up to separate source codes from their output files. The source codes are kept in the master branch, and their output is stored and published in the gh-pages branch.

git checkout master
cd analysis
git add new-analysis.Rmd index.Rmd
git commit -m "add new analysis"
git push origin master

git checkout gh-pages
git merge master
make
git add *Rmd *html figure/*
git commit -m "add new analysis"
git push origin gh-pages

Resources

Some tips on how to collaborate with others using GitHub

Many of us collaobrate with scientists from different discipline on code, analysis, or bioinformatic pipelines. There are two common options

  1. Each collaborator creats his/her own work branch in the repository.

  2. Each collaborator creates his/her own fork of the repository.

Both of these options allow the other collaborators to review changes in a pull request, comment on the changes, and merge the changes. Version control process is also similar in these two options. From my experience, the major difference is your work habits. When I work with a branch inside a repository, I merge the changes to the master or the gh-pages branch when done with the changes. This often results in me forgetting to change the branch back to my work branch, and the next time I work in the repository, I'll end up making changes to the master branch...

I suggest using the forking option. With this option, you are always working under your fork and don't EVER have to worry about working under the wrong branch. The steps are simple.

How to fork a repo:

https://help.github.com/articles/fork-a-repo/

How to sync a fork with the remote repository"

https://help.github.com/articles/syncing-a-fork/

About

This is a GitHub repo for a project studying gene expression and methylation in humans, chimpanzees, and rhesus macaques. The website of this work can be found at:

http://lauren-blake.github.io/Reg_Evo_Primates/analysis/

License:Creative Commons Attribution 4.0 International


Languages

Language:HTML 73.0%Language:R 10.4%Language:CSS 9.9%Language:JavaScript 6.2%Language:Ruby 0.3%Language:PowerShell 0.1%Language:Makefile 0.0%