You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The test testRemoveThresholdingEffectArtifact in goby-distribution/src/test/java/org/campagnelab/goby/modes/TestDiscoverSequenceVariantsMode.java may fail as it calls qualityScoreFilter.filterGenotypes, which depends on the output of a random variable generator.
As you fix the seed (as the result of some deterministic computation), the output of the test will always be the same. But if the inputs of the seed computation change for whatever reason, the test may begin always failing. I met this issue when building goby3 against a newer version of picard. I changed the seed manually to be 1 and the test passed, thus confirming the seed choice can be an issue.
I have deactivated the test during the Debian build.
Bye,
Pierre
The text was updated successfully, but these errors were encountered:
Hello,
The test testRemoveThresholdingEffectArtifact in goby-distribution/src/test/java/org/campagnelab/goby/modes/TestDiscoverSequenceVariantsMode.java may fail as it calls qualityScoreFilter.filterGenotypes, which depends on the output of a random variable generator.
As you fix the seed (as the result of some deterministic computation), the output of the test will always be the same. But if the inputs of the seed computation change for whatever reason, the test may begin always failing. I met this issue when building goby3 against a newer version of picard. I changed the seed manually to be 1 and the test passed, thus confirming the seed choice can be an issue.
I have deactivated the test during the Debian build.
Bye,
Pierre
The text was updated successfully, but these errors were encountered: