Skip to content

website maintenance

chmille4 edited this page Aug 21, 2012 · 4 revisions

Tools.html

Adding a new tool

  1. fork the tool into the gkno organization github repo if it isn't already
  2. add the github repo name to the appropriate (depending on the category) array in the following snippet of code found in tools.html. For example I've added the tool "myAligner" to the Alignment category below
var tools = {
   "Alignment" : ['mosaik', 'myAligner],<br/>
   "Variant Detection" : ['freebayes'],
   "Utilities" : ['bamtools', 'premo'] 
};

Adding a new category

Add the category in the snippet below in tools.html. For example I've added NewCategory

var tools = {
   "Alignment" : ['mosaik'],
   "Variant Detection" : ['freebayes'],
   "Utilities" : ['bamtools', 'premo'],
   "NewCategory": ['someTool']
};

Tutorials.html

Adding a new tutorial

Tutorials are really blog posts that are published on the tumblr account. Just tag the blog post with a tutorial tag and it'll automatically be populated on the tutorials.html page. To put the new tutorial in a certain category (e.g. pipeline), tag it with a pipeline tag.

Adding a new category

Add the category in the following snippet on tutorials.html. For example I've added NewCategory

var categories = ['pipeline', 'tool', 'NewCategory'];

Clone this wiki locally