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
+4
Original file line number
Diff line number
Diff line change
@@ -38,6 +38,8 @@ tiddit --sv --help
38
38
tiddit --cov --help
39
39
```
40
40
41
+
Optionally, the assembly calling may be turned off using the "--skip_assembly" option.
42
+
41
43
TIDDIT may be installed using bioconda:
42
44
```
43
45
conda install tiddit
@@ -60,6 +62,7 @@ Where bam is the input bam or cram file. And reference.fasta is the reference fa
60
62
61
63
TIDDIT may be fine-tuned by altering these optional parameters:
62
64
65
+
63
66
-o output prefix(default=output)
64
67
-i 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)
65
68
-d expected reads orientations, possible values "innie" (-> <-) or "outtie" (<- ->). Default: major orientation within the dataset
@@ -74,6 +77,7 @@ TIDDIT may be fine-tuned by altering these optional parameters:
74
77
-s Number of reads to sample when computing library statistics(default=25000000)
75
78
-z minimum variant size (default=50), variants smaller than this will not be printed ( z < 10 is not recomended)
76
79
--force_ploidy force the ploidy to be set to -n across the entire genome (i.e skip coverage normalisation of chromosomes)
80
+
--force_overwrite force the analysis and overwrite any data in the output folder
77
81
--n_mask exclude regions from coverage calculation if they contain more than this fraction of N (default = 0.5)
78
82
--skip_assembly Skip running local assembly, tiddit will perform worse, but wont require fermi2, bwa, ropebwt and bwa indexed ref
variants_list=Parallel(n_jobs=args.threads,prefer="threads",timeout=99999)( delayed(define_variant)(chrA,bam_file_name,sv_clusters,args,library,min_mapq,samples,coverage_data,contig_number,max_ins_len,contig_seqs) for chrA in sv_clusters)
554
+
variants_list=Parallel(n_jobs=args.threads,prefer="threads",timeout=99999)( delayed(define_variant)(chrA,bam_file_name,sv_clusters,args,library,min_mapq,samples,coverage_data,contig_number,max_ins_len,contig_seqs,gc) for chrA in sv_clusters)
0 commit comments