ANGSD: Analysis of next generation Sequencing Data

Latest tar.gz version is (0.938/0.939 on github), see Change_log for changes, and download it here.

Thorfinn: Difference between revisions

From angsd
Jump to navigation Jump to search
Line 22: Line 22:
<pre>
<pre>
VERSION=0.919
VERSION=0.919
cd angsd/
sed "s/PACKAGE_VERSION  = .*/PACKAGE_VERSION  = ${VERSION}/" Makefile >tmp
diff Makefile tmp
mv tmp Makefile
cd angsd; git tag -a ${VERSION} -m "time for a new version"
cd angsd; git tag -a ${VERSION} -m "time for a new version"
git commit Makefile -m "Preparing new ${VERSION} version"
git commit Makefile -m "Preparing new ${VERSION} version"

Revision as of 17:52, 22 June 2017

How to deploy

This page described how a new version should be put on wiki and github

Make a combined angsd htslib to put on wiki download

copy latest and make a new annotated tag and push to wiki

VERSION=0.916
mkdir delme
cd delme
git clone https://github.com/ANGSD/angsd
git clone https://github.com/SAMtools/htslib
cd angsd; git tag -a ${VERSION} -m "time for a new version"
sed "s/PACKAGE_VERSION  = .*/PACKAGE_VERSION  = ${VERSION}/" Makefile >tmp
diff Makefile tmp
mv tmp Makefile
cd ..
tar --exclude='.git' -cvf angsd${VERSION}.tar.gz angsd htslib/
scp angsd${VERSION}.tar.gz software@popgen.dk:/home/software/download/angsd/

Make a new github version to put on github

VERSION=0.919
cd angsd/
sed "s/PACKAGE_VERSION  = .*/PACKAGE_VERSION  = ${VERSION}/" Makefile >tmp
diff Makefile tmp
mv tmp Makefile
cd angsd; git tag -a ${VERSION} -m "time for a new version"
git commit Makefile -m "Preparing new ${VERSION} version"
git push
git push --tags