Skip to content
Snippets Groups Projects
README.md 993 B
Newer Older
# RNA-Seq DGE Workflow

git checkout-index -a -f --prefix=/destination/path/

Holger Brandl's avatar
Holger Brandl committed
## How to use install it?

export the directory from git into your project
Holger Brandl's avatar
Holger Brandl committed
git archive --format=tar --remote=git-srv1:/local/git/bioinformatics master dge_workflow/ | tar -xf -
Holger Brandl's avatar
Holger Brandl committed

http://stackoverflow.com/questions/160608/do-a-git-export-like-svn-export

or

Holger Brandl's avatar
Holger Brandl committed
do a sparse checkout (not recommenced without solid understandng how git works)
Holger Brandl's avatar
Holger Brandl committed
http://stackoverflow.com/questions/600079/is-there-any-way-to-clone-a-git-repositorys-sub-directory-only

Holger Brandl's avatar
Holger Brandl committed
cd /somewhere
git init
git remote add origin git-srv1:/local/git/bioinformatics
Holger Brandl's avatar
Holger Brandl committed
git config core.sparsecheckout true
Holger Brandl's avatar
Holger Brandl committed
echo "dge_workflow/" >> .git/info/sparse-checkout
git pull origin master

## How to use it?

1) Copy dge_master_template.sh into and rename into something meaningful (e.g. dge_mouse_helin.sh)
2) Adjust DGE_HOME in master script
3) Run on madmax
4) Adjust reports if necessary


## How to backport changes into it?

Holger Brandl's avatar
Holger Brandl committed
Clone it, change it, push and commit it.