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
|
/*
* File: CDR3SeqData.cpp
*
* Author: Carlos Olivares
*
* This source code is distributed as part of the IGoR software.
* IGoR (Inference and Generation of Repertoires) is a versatile software to analyze and model immune receptors
* generation, selection, mutation and all other processes.
* Copyright (C) 2017- Quentin Marcou, 2019 - Carlos Olivares
*
* 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.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/
#include <string>
#include "CDR3SeqData.h"
CDR3SeqData::CDR3SeqData() {
seq_index = -1;
v_anchor = -1;
j_anchor = -1;
CDR3nt = "";
CDR3aa = "";
}
//CDR3SeqData::CDR3SeqData(int seq_index, int v_anchor, int j_anchor ) {
// seq_index = seq_index;
// v_anchor = v_anchor;
// j_anchor = j_anchor;
// CDR3nt = "";
// CDR3aa = "";
//}
CDR3SeqData::CDR3SeqData(const CDR3SeqData& orig) {
}
CDR3SeqData::~CDR3SeqData() {
}
std::string CDR3SeqData::strData(){
std::string delimiter = ";";
return std::to_string(seq_index) + delimiter +
std::to_string(v_anchor ) + delimiter +
std::to_string(j_anchor ) + delimiter +
CDR3nt + delimiter +
CDR3aa;
}
|