Skip to content

Commit 2478ef3

Browse files
authored
Merge pull request #41 from J35P312/master
minor fixes
2 parents 432567d + eafaf83 commit 2478ef3

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

TIDDIT.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1+
#!/usr/bin/env python
12
import argparse
23
import os
34
import TIDDIT_clustering
45

5-
version = "2.0.1"
6+
version = "2.0.3"
67
parser = argparse.ArgumentParser("""TIDDIT-{}""".format(version),add_help=False)
78
parser.add_argument('--sv' , help="call structural variation", required=False, action="store_true")
89
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
@@ -45,7 +45,7 @@ int main(int argc, char **argv) {
4545
float insertStd;
4646
int min_variant_size= 100;
4747
string outputFileHeader ="output";
48-
string version = "2.0.1";
48+
string version = "2.0.3";
4949

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

src/data_structures/Translocation.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ string Window::VCFHeader(string libraryData){
6464
headerString+="##INFO=<ID=ORSR,Number=2,Type=Integer,Description=\"Orientation of the split reads (inverted,normal)\">\n";
6565
headerString+="##INFO=<ID=CIPOS,Number=2,Type=Integer,Description=\"Confidence interval around POS for imprecise variants\">\n";
6666
headerString+="##INFO=<ID=CIEND,Number=2,Type=Integer,Description=\"Confidence interval around END for imprecise variants\">\n";
67-
headerString+="##INFO=<ID=EL,Number=1,Type=Float,Description=\"Expected links to window B\">\n";
68-
headerString+="##INFO=<ID=EL2,Number=1,Type=Float,Description=\"Expected links to window B\">\n";
67+
headerString+="##INFO=<ID=E1,Number=1,Type=Float,Description=\"Expected links to window B\">\n";
68+
headerString+="##INFO=<ID=E2,Number=1,Type=Float,Description=\"Expected links to window B(assuming ideal window length)\">\n";
6969
headerString+="##INFO=<ID=QUALA,Number=1,Type=Float,Description=\"The average mapping quality of the reads in window A\">\n";
7070
headerString+="##INFO=<ID=QUALB,Number=1,Type=Float,Description=\"The average mapping quality of the reads in window B\">\n";
7171
//set filters

0 commit comments

Comments
 (0)