This gist is part of a blog post. Check it out at:
http://jasonrudolph.com/blog/2011/08/09/programming-achievements-how-to-level-up-as-a-developer
| package com.lifetech.oncomine.allele.utils; | |
| public class NormalizedValueCalculator { | |
| public NormalizedValueCalculator() { | |
| } | |
| public NormalizedValues calculateNormalizedValues(String referenceAllele, String alternateAllele, Integer position) { | |
| NormalizedValues normalizedValues = new NormalizedValues(referenceAllele, alternateAllele, position); | |
| normalizedValues = doTrim(normalizedValues); |
This gist is part of a blog post. Check it out at:
http://jasonrudolph.com/blog/2011/08/09/programming-achievements-how-to-level-up-as-a-developer