Skip to content

Commit 8284e58

Browse files
committed
Pollux 1.01: Added compability with older versions of the GCC compiler.
1 parent 370776a commit 8284e58

File tree

5 files changed

+29
-7
lines changed

5 files changed

+29
-7
lines changed

README

+9-3
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ produced by second-generation sequencing technologies.
2424

2525
-- Release --
2626

27-
Pollux 1.00
28-
4 November 2014
27+
Pollux 1.01
28+
11 February 2015
2929

30-
This is the initial release of Pollux.
30+
Added compability with older versions of the GCC compiler.
3131

3232
-- Requirements --
3333

@@ -50,6 +50,12 @@ Simple correction:
5050
Brendan McConkey: [email protected]
5151
Eric Marinier: [email protected]
5252

53+
-- Publication --
54+
55+
Marinier, Eric, Daniel G. Brown, and Brendan J. McConkey.
56+
"Pollux: platform independent error correction of single and mixed genomes."
57+
BMC Bioinformatics 16.1 (2015): 10.
58+
5359
-- Credits --
5460

5561
The Makefile is derived from [email protected] (2010-11-05).

ReleaseNotes

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
======================================================================
2+
3+
Pollux 1.01
4+
11 February 2015
5+
6+
Added compability with older versions of the GCC compiler.
7+
8+
======================================================================
9+
10+
Pollux 1.00
11+
4 November 2014
12+
13+
This is the initial release of Pollux.
14+
15+
======================================================================

source/Correction.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
1818
1919
*/
2020

21+
#include "Globals.h"
2122
#include "Reads.h"
2223
#include "KMerHashTable.h"
2324
#include "Utility.h"
@@ -28,8 +29,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
2829
#ifdef __cplusplus
2930
extern "C" {
3031
#endif
31-
32-
typedef struct Correction Correction;
32+
3333
typedef bool (*CorrectionFunction)(struct read* read, Correction* correction);
3434

3535
struct Correction

source/Globals.h

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
2525
extern "C" {
2626
#endif
2727

28+
typedef struct Correction Correction;
29+
2830
// Deprecated:
2931
enum SEQUENCING_TECHNOLOGY
3032
{

source/KMerHashTable.h

+1-2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
1818
1919
*/
2020

21+
#include "Globals.h"
2122
#include "hash-table.h"
2223

2324
#ifndef KMERHASHTABLE_H
@@ -27,8 +28,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
2728
extern "C" {
2829
#endif
2930

30-
typedef struct Correction Correction;
31-
3231
typedef struct
3332
{
3433
HashTable* table;

0 commit comments

Comments
 (0)