Browse code

initialize pseudocount member outside of class def

git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/seqbias@100176 bc3139a8-67e5-0310-9ffc-ced21a209358

Nathaniel Hayden authored on 04/03/2015 01:16:09
Showing 2 changed files

... ...
@@ -1,5 +1,5 @@
1 1
 Package: seqbias
2
-Version: 1.15.2
2
+Version: 1.15.3
3 3
 Date: 25-12-2010
4 4
 Title: Estimation of per-position bias in high-throughput sequencing
5 5
         data
... ...
@@ -741,8 +741,10 @@ class motif_trainer
741 741
     double* ps1_i;
742 742
     double* ps1_j;
743 743
 
744
-    static const double pseudocount = 1.0;
744
+    /* Initialize outside class definition */
745
+    static const double pseudocount;
745 746
 };
747
+const double motif_trainer::pseudocount = 1.0;
746 748
 
747 749
 
748 750