The values used to be integers (-1 for unpaired, 0 for unmapped, 1 for first, 2 for second); but i switched to strings before commit so it was more clear. Forgot to update the OTHER getValue method.
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@2402 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
7b5e332ff3
commit
38563bbc2d
|
|
@ -18,7 +18,7 @@ public class PairedReadOrderCovariate implements ExperimentalCovariate{
|
|||
}
|
||||
|
||||
public final Comparable getValue( final String str ) {
|
||||
return Integer.parseInt( str );
|
||||
return str.hashCode();
|
||||
}
|
||||
|
||||
// Used to estimate the amount space required for the full data HashMap
|
||||
|
|
|
|||
Loading…
Reference in New Issue