Skip to content

Commit ec9bc34

Browse files
committed
modified: TIDDIT.py
modified: src/TIDDIT.cpp modified: src/data_structures/Translocation.cpp
1 parent d6751b4 commit ec9bc34

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

TIDDIT.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
sys.path.insert(0, '{}/src/'.format(wd))
99
import TIDDIT_calling
1010

11-
version = "2.12.1"
11+
version = "2.12.2"
1212
parser = argparse.ArgumentParser("""TIDDIT-{}""".format(version),add_help=False)
1313
parser.add_argument('--sv' , help="call structural variation", required=False, action="store_true")
1414
parser.add_argument('--cov' , help="generate a coverage bed file", required=False, action="store_true")

src/TIDDIT.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ int main(int argc, char **argv) {
4646
int min_variant_size= 100;
4747
int sample = 100000000;
4848
string outputFileHeader ="output";
49-
string version = "2.12.1";
49+
string version = "2.12.2";
5050

5151
//collect all options as a vector
5252
vector<string> arguments(argv, argv + argc);

src/data_structures/Translocation.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,6 @@
99
#include <string>
1010
#include <cmath>
1111

12-
string int2str(int to_be_converted){
13-
string converted= static_cast<ostringstream*>( &(ostringstream() << to_be_converted) )->str();
14-
return(converted);
15-
}
16-
1712
void Window::initTrans(SamHeader head) {
1813
uint32_t contigsNumber = 0;
1914
SamSequenceDictionary sequences = head.Sequences;

0 commit comments

Comments
 (0)