-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #87 from bergmanlab/tebreak
adding tebreak as an additional method. Reformatting config files to be consistent across methods. Updating documentation.
- Loading branch information
Showing
92 changed files
with
2,064 additions
and
908 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,4 +10,5 @@ dependencies: | |
- wgsim | ||
- seqtk | ||
- samtools | ||
- bedtools | ||
- bedtools | ||
- art |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
|
||
# omits the edges of the TE sequence coverage when calculating average depth across the element | ||
OMIT_EDGES = True | ||
|
||
# If OMIT_EDGES = True, use the read length as the length of the edges to omit | ||
OMIT_EDGES_READ_LENGTH = True | ||
|
||
# IF OMIT_EDGES = True and OMIT_EDGES_READ_LENGTH = False | ||
# use this value as the length of the edges to omit | ||
OMIT_EDGES_LENGTH = 300 | ||
PARAMS = { | ||
# omits the edges of the TE sequence coverage when calculating average depth across the element | ||
"omit_edges": True, | ||
# If OMIT_EDGES = True, use the read length as the length of the edges to omit | ||
"omit_edges_read_length" : True, | ||
# IF OMIT_EDGES = True and OMIT_EDGES_READ_LENGTH = False | ||
# use this value as the length of the edges to omit | ||
"omit_edges_length" : 300 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
|
||
MIN_READ_SUPPORT = 0 | ||
PARAMS = { | ||
"min_read_support" : 0 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
|
||
# max length of junction read overlap to consider a target site duplication | ||
MAX_TSD = 20 | ||
PARAMS = { | ||
# max length of junction read overlap to consider a target site duplication | ||
"tsd=" : 20 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,15 @@ | ||
|
||
# merge window for identifying TE clusters | ||
WINDOW = 10 | ||
|
||
# minimum mapping quality of alignment | ||
MIN_MAPQ = 20 | ||
|
||
# minimum allele frequency | ||
MIN_ALLELE_FREQUENCY = 0.1 | ||
|
||
# max length of junction read overlap to consider a target site duplication | ||
MAX_TSD = 25 | ||
|
||
# maximum gap size | ||
MAX_GAP = 5 | ||
PARAMS = { | ||
"--window" : 10, | ||
"--min_mapq" : 20, | ||
"--min_af" : 0.1, | ||
"--tsd_max" : 25, | ||
"--gap_max" : 5 | ||
} | ||
|
||
# --window WINDOW merge window for identifying TE clusters (default = 10) | ||
# --min_mapq MIN_MAPQ minimum mapping quality of alignment (default = 20) | ||
# --min_af MIN_AF minimum allele frequency (default = 0.1) | ||
# --tsd_max TSD_MAX maximum TSD size (default = 25) | ||
# --gap_max GAP_MAX maximum gap size (default = 5) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
|
||
# requires that final results have support on both ends of prediction | ||
REQUIRE_BOTH_END_SUPPORT=True | ||
|
||
# threshold for the minimum acceptable fraction of the reads supporting the prediction | ||
PERCENT_READ_SUPPORT_THRESHOLD=0.1 | ||
PARAMS = { | ||
# requires that final results have support on both ends of prediction | ||
"require_both_end_support" : True, | ||
# threshold for the minimum acceptable fraction of the reads supporting the prediction | ||
"percent_read_support_threshold" : 0.1 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
PARAMS = { | ||
# require that the TE prediction have support from both junctions | ||
"require_both_end_support" : True, | ||
|
||
# require that the TE prediction have support from both junctions | ||
REQUIRE_BOTH_END_SUPPORT = True | ||
|
||
# threshold for the minimum acceptable (average physical coverage supporting the insertion of the given TE) / (average physical coverage) | ||
FREQUENCY_THRESHOLD=0.1 | ||
# threshold for the minimum acceptable (average physical coverage supporting the insertion of the given TE) / (average physical coverage) | ||
"frequency_threshold" : 0.1 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
REF_LEFT_THRESHOLD = 0 | ||
REF_RIGHT_THRESHOLD = 0 | ||
|
||
NONREF_LEFT_THRESHOLD = 0 | ||
NONREF_RIGHT_THRESHOLD = 0 | ||
PARAMS = { | ||
"ref_left_threshold" : 0, | ||
"ref_right_threshold" : 0, | ||
"nonref_left_threshold" : 0, | ||
"nonref_right_threshold" : 0 | ||
} |
Oops, something went wrong.