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
An output example for the enrichment significance test results.
402
+
403
+
#### header explaination
404
+
405
+
-`chr_name`: str, chromosome name of tested region, value like 'chr1', 'chr2' ...
406
+
-`region_start`: int, the start coordinate of the tested region, and the coordinate index is based on a 1-based scale.
407
+
-`region_end`: int, the end coordinate of the tested region, and the coordinate index is based on a 1-based scale.
408
+
-`mpmat_index`: str, a formatted string, which can be used as a key to index the whole table.
409
+
-`region_site_num`: int, number of sites (C or G) in the tested region
410
+
-`region_block_site_num`: int, number of sites that present a mutation signal in the control sample (C-to-T or G-to-A). The blocked sites are omitted in the enrichment test step.
411
+
-`region_mut_site_num`: int, number of sites with mutated signals in the treatment sample. Note, the blocked sites are not considered.
412
+
-`region_site_index`: str list, split by comma, list length is the same as <region_site_num>, and each item in this list is the site coordinate of the genome.
413
+
-`region_block_state`: str list, split by -, list length is the same as <region_site_num>, “B” means site is blocked, and "N" means site is not blocked.
414
+
-`region_highest_site_index`: str, coordinate of site with the highest Detect-seq signal.
415
+
-`region_highest_site_mut_num`: int, count of sequencing reads with tandem mutation info for the site with the highest Detect-seq signal.
416
+
-`region_highest_site_cover_num`: int, total count of sequencing reads for the site with the highest Detect-seq signal.
417
+
-`region_highest_site_mut_ratio`: float, range 0~1, mutation ratio, which equals <region_highest_site_mut_num> / <region_highest_site_cover_num>
418
+
-`ctrl_count`: int, total count of sequencing reads in the control sample; if a read overlaps with the tested region, it will be counted.
419
+
-`treat_count`: int, total count of sequencing reads in treat sample.
420
+
-`ctrl_mut_count`: int, count of sequencing reads with C-to-T / G-to-A mutation info in control sample.
421
+
-`treat_mut_count`: int, count of sequencing reads with C-to-T / G-to-A mutation info in treat sample.
422
+
-`ctrl_count.nor`:, float, normalized <ctrl_count>, the default value equals count per million.
423
+
-`treat_count.nor`:, float, normalized <treat_count>, the default value equals count per million.
424
+
-`ctrl_mut_count.nor`:, float, normalized <ctrl_mut_count>, the default value equals count per million.
425
+
-`treat_mut_count.nor`:, float, normalized <treat_mut_count>, the default value equals count per million.
426
+
-`count_info`: meaning less in this version.
427
+
-`log2_FC`: float, log2 fold-change, which equals log2(<treat_count.norm> / <ctrl_count.norm>)
428
+
-`log2_FC_mut`: float, log2 fold-change, which equals log2(<treat_mut_count.norm> / <ctrl_mut_count.norm>)
429
+
-`test_state`: str, "TestOK" means the Poisson enrichment test works well.
430
+
-`p_value`: float, the p-value from the Poisson enrichment test.
431
+
-`FDR`: float, adjusted p-value with BH methods.
432
+
400
433
```text
401
-
# An output example for the enrichment significance test results, this file is related to Figure 4 and Step 51.
402
-
# header explaination
403
-
# chr_name, str, chromosome name of tested region, value like 'chr1', 'chr2' ...
404
-
# region_start, int, the start coordinate of the tested region, and the coordinate index is based on a 1-based scale.
405
-
# region_end, int, the end coordinate of the tested region, and the coordinate index is based on a 1-based scale.
406
-
# mpmat_index, str, a formatted string, which can be used as a key to index the whole table.
407
-
# region_site_num, int, number of sites (C or G) in the tested region
408
-
# region_block_site_num, int, number of sites that present a mutation signal in the control sample (C-to-T or G-to-A). The blocked sites are omitted in the enrichment test step.
409
-
# region_mut_site_num, int, number of sites with mutated signals in the treatment sample. Note, the blocked sites are not considered.
410
-
# region_site_index, str list, split by comma, list length is the same as <region_site_num>, and each item in this list is the site coordinate of the genome.
411
-
# region_block_state, str list, split by -, list length is the same as <region_site_num>, “B” means site is blocked, and "N" means site is not blocked.
412
-
# region_highest_site_index, str, coordinate of site with the highest Detect-seq signal.
413
-
# region_highest_site_mut_num, int, count of sequencing reads with tandem mutation info for the site with the highest Detect-seq signal.
414
-
# region_highest_site_cover_num, int, total count of sequencing reads for the site with the highest Detect-seq signal.
415
-
# region_highest_site_mut_ratio, float, range 0~1, mutation ratio, which equals <region_highest_site_mut_num> / <region_highest_site_cover_num>
416
-
# ctrl_count, int, total count of sequencing reads in the control sample; if a read overlaps with the tested region, it will be counted.
417
-
# treat_count, int, total count of sequencing reads in treat sample.
418
-
# ctrl_mut_count, int, count of sequencing reads with C-to-T / G-to-A mutation info in control sample.
419
-
# treat_mut_count, int, count of sequencing reads with C-to-T / G-to-A mutation info in treat sample.
420
-
# ctrl_count.norm, float, normalized <ctrl_count>, the default value equals count per million.
421
-
# treat_count.norm, float, normalized <treat_count>, the default value equals count per million.
422
-
# ctrl_mut_count.norm, float, normalized <ctrl_mut_count>, the default value equals count per million.
423
-
# treat_mut_count.norm, float, normalized <treat_mut_count>, the default value equals count per million.
424
-
# count_info, meaning less in this version.
425
-
# log2_FC, float, log2 fold-change, which equals log2(<treat_count.norm> / <ctrl_count.norm>)
426
-
# log2_FC_mut, float, log2 fold-change, which equals log2(<treat_mut_count.norm> / <ctrl_mut_count.norm>)
427
-
# test_state, str, "TestOK" means the Poisson enrichment test works well.
428
-
# p_value, float, the p-value from the Poisson enrichment test.
0 commit comments