-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.h
114 lines (91 loc) · 2.78 KB
/
data.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* Copyright (C) 2014 Gad Abraham
* All rights reserved.
*/
#pragma once
#include <iostream>
#include <fstream>
#include <vector>
#include <algorithm>
#include <Eigen/Core>
#include <Eigen/Dense>
#include <Eigen/Eigen>
#include "util.h"
#include "pgenlib_internal.h"
#define PACK_DENSITY 4
#define PHENO_BINARY_12 0
#define PHENO_CONTINUOUS 1
#define PLINK_PHENO_MISSING -9
// The BED file magic numbers
#define PLINK_OFFSET 3
#define COVAR_ACTION_TRAIN_TEST 0
#define COVAR_ACTION_TRAIN_ONLY 1
#define COVAR_ACTION_TRAIN_TEST_STR "traintest"
#define COVAR_ACTION_TRAIN_ONLY_STR "train"
/* 3 is 11 in binary, we need a 2 bit mask for each of the 4 positions */
#define MASK0 3 /* 3 << 2 * 0 */
#define MASK1 12 /* 3 << 2 * 1 */
#define MASK2 48 /* 3 << 2 * 2 */
#define MASK3 192 /* 3 << 2 * 3 */
#define BUFSIZE 100
#define DATA_MODE_TRAIN 1
#define DATA_MODE_TEST 2
using namespace Eigen;
class NamedMatrixWrapper {
public:
MatrixXd X;
std::vector<std::string> rownames;
std::vector<std::string> colnames;
};
class Data {
public:
MatrixXd X, Y;
MatrixXd X_meansd;
unsigned int N, p, K;
unsigned long long len;
unsigned int nsnps;
const char *geno_filename;
bool verbose;
std::vector<std::string> fam_ids;
std::vector<std::string> indiv_ids;
std::vector<std::string> snp_ids;
std::vector<unsigned long long> bp;
std::vector<std::string> ref_alleles;
std::vector<std::string> alt_alleles;
bool use_preloaded_maf;
int stand_method_x;
Data();
~Data();
void prepare();
void read_bed();
void read_snp_block(unsigned int start_idx, unsigned int stop_idx,
bool transpose, bool resize);
void get_size();
void read_pheno(const char *filename, unsigned int firstcol);
void read_plink_bim(const char *filename);
void read_plink_fam(const char *filename);
std::string tolower(const std::string& v);
private:
uintptr_t* genovec;
// uint16_t* tmp2;
unsigned long long np;
std::ifstream in;
plink2::PgenFileInfo pgfi;
unsigned char* pgfi_alloc;
plink2::PgenReader pgr;
unsigned char* pgr_alloc;
double* avg;
//VectorXd tmpx;
bool* visited;
};
NamedMatrixWrapper read_text(
const char *filename, unsigned int firstcol,
unsigned int nrows=-1, unsigned int skip=0, bool verbose=false);
void decode_plink(unsigned char * __restrict__ out,
const unsigned char * __restrict__ in,
const unsigned int n);