-
Notifications
You must be signed in to change notification settings - Fork 1
website maintenance
chmille4 edited this page Aug 21, 2012
·
4 revisions
- fork the tool into the gkno organization github repo if it isn't already
- 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']
};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 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.
Add the category in the following snippet on tutorials.html. For example I've added NewCategory
var categories = ['pipeline', 'tool', 'NewCategory'];