You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,7 @@ INSTALLATION
10
10
==============
11
11
TIDDIT requires python3 (=> 3.8), cython, pysam, and Numpy.
12
12
13
+
13
14
By default, tiddit will require, bwa, fermi2 and ropebwt2 for local assembly; local assembly may be disabled through the "--skip_assembly" parameter.
14
15
15
16
Installation
@@ -74,6 +75,7 @@ TIDDIT may be fine-tuned by altering these optional parameters:
74
75
-d expected reads orientations, possible values "innie" (-> <-) or "outtie" (<- ->). Default: major orientation within the dataset
75
76
-p Minimum number of supporting pairs in order to call a variant (default 3)
76
77
-r Minimum number of supporting split reads to call a variant (default 3)
78
+
--threads Number of threads (default 1)
77
79
-q Minimum mapping quality to consider an alignment (default 5)
78
80
-n the ploidy of the organism,(default = 2)
79
81
-e clustering distance parameter, discordant pairs closer than this distance are considered to belong to the same variant(default = sqrt(insert-size*2)*12)
parser.add_argument("--cov" , help="generate a coverage bed file", required=False, action="store_true")
@@ -32,6 +32,7 @@ def main():
32
32
parser.add_argument('-i', type=int, help="paired reads maximum allowed insert size. Pairs aligning on the same chr at a distance higher than this are considered candidates for SV (default= 99.9th percentile of insert size)")
33
33
parser.add_argument('-d', type=str,help="expected reads orientations, possible values \"innie\" (-> <-) or \"outtie\" (<- ->). Default: major orientation within the dataset")
34
34
parser.add_argument('-p', type=int,default=3, help="Minimum number of supporting pairs in order to call a variant (default 3)")
35
+
parser.add_argument('--threads', type=int,default=1, help="Number of threads (default=1)")
35
36
parser.add_argument('-r', type=int,default=3, help="Minimum number of supporting split reads to call a variant (default 3)")
36
37
parser.add_argument('-q', type=int,default=5, help="Minimum mapping quality to consider an alignment (default 5)")
37
38
parser.add_argument('-n', type=int,default=2, help="the ploidy of the organism,(default = 2)")
0 commit comments