-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenamevcf.cuh
52 lines (39 loc) · 897 Bytes
/
renamevcf.cuh
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
#pragma once
#include <iostream>
#include "functions_library.cuh"
#include "parameter_load.h"
#include "node_within_host.cuh"
#include <cstdlib>
#include <curand.h>
#include <curand_kernel.h>
#include "cuda_runtime.h"
#include "device_launch_parameters.h"
#include <thrust/system_error.h>
#include <thrust/system/cuda/error.h>
#include <sstream>
#include <algorithm>
#include <random>
#include <chrono>
#include <iomanip>
#include <string>
#include <map>
#include <string>
#include <vector>
#include <queue>
#include <thread>
#include <mutex>
#include <shared_mutex>
using namespace std;
class renamevcf
{
private:
string vcf_Folder;
string vcf_File;
string vcf_File_name_only;
string vcf_Folder_name;
string tumor_Column_Name = "";
string normal_Column_Name = "NORMAL";
public:
renamevcf(string vcf_Folder, string sample_sheet_vcf);
void ingress();
};