Object.keys(colors).forEach(function(key) {
   var decl = colors[key];
   decl.func = colorScale({
     variance: variance,
     color: decl.value || color
   });
 });
Exemple #2
0
module.exports = function generateAminoAcidColorScale() {
    var cs = ColorScale({
        color: 'red',
        variance: 20
    });

    cs(-1) //Outputs #0000CC 

    Object.keys(proteinAlphabet).forEach(function(key) {
        var prot = proteinAlphabet[key];
        prot.hydrophobicity = AAHydrophobicityMap[prot.threeLettersName];
        prot.color = cs(prot.hydrophobicity)
    });
    console.log('proteinAlphabet: ' + JSON.stringify(proteinAlphabet, null, 4));
}();