Risa is an R package that supports parsing, saving and updating ISA-tab datasets. It is available in Bioconductor 2.11 at http://www.bioconductor.org/packages/release/bioc/html/Risa.html.
- General info: http://isa-tools.org
- Tools' overview in this short paper: http://bioinformatics.oxfordjournals.org/content/26/18/2354.full.pdf+html
- Issue tracking and bug reporting: https://github.com/ISA-tools/Risa/issues
- Mainline source code: https://github.com/ISA-tools/Risa
- Twitter: @isatools
- IRC: irc://irc.freenode.net/#isatab
- Development blog
You should read this article about Git Flow: http://scottchacon.com/2011/08/31/github-flow.html. It's a really useful tutorial on how to use Git for collaborative development.
- Fork it.
- Clone your forked repository to your machine
- Create a branch (
git checkout -b myRisa
) - Make your changes
- Run the tests (
mvn clean test
) - Commit your changes (
git commit -am "Added something useful"
) - Push to the branch (
git push origin myRisa
) - Create a Pull Request from your branch.
- Promote it. Get others to drop in and +1 it.