-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgene_extract.h
51 lines (43 loc) · 1.12 KB
/
gene_extract.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
#pragma once
#include <iostream>
#include <fstream>
#include <string>
#include <cstring>
#include <filesystem>
#include <list>
#include <set>
#include <sstream>
using namespace std;
class gene_extract
{
/**
* Extracts gene sequences using from a reference sequence file.
**/
private:
/**
* @param gene_List defines the CATE compatible GENE list file. It provides the base pair coordinates of the genes to be extracted.
**/
string gene_List;
/**
* @param reference_Path defines the path of the reference FASTA file.
**/
string reference_Path;
/**
* @param output_FASTA defines the output folder path.
**/
string output_Path;
/**
* @param intermediate_Path defines the intermediate folder path.
**/
string intermediate_Path;
public:
/**
* Constructor Function assigns passed variables to the classes' private variable.
**/
gene_extract(string gene_List, string reference_Path, string output_Path, string intermediate_Path);
/**
* Execution function.
* Extracts the genes in FASTA formats.
**/
void ingress();
};