-
Notifications
You must be signed in to change notification settings - Fork 214
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '4.0.0' of github.com:deeptools/deepTools into 4.0.0
- Loading branch information
Showing
53 changed files
with
3,681 additions
and
623 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Cargo | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
cargo_test: | ||
name: run cargo test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: rustup update stable && rustup default stable | ||
- name: cargo build | ||
run: cargo build --verbose | ||
- name: cargo test | ||
run: cargo test --verbose |
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
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,18 +1,39 @@ | ||
# Counting | ||
# Changes | ||
|
||
Counting reads has slightly changed. | ||
for -bs 1, the counting mechanism remains the same. | ||
for -bs > 1, a read is split in multiple contiguous blocks | ||
- multiple blocks in 1 bin only count as 1 | ||
- multiple blocks in multiple bins count as 1 per bin | ||
- one block spanning multiple bins counts as 1 in each bin | ||
## computeMatrix | ||
|
||
# normalization | ||
- --sortRegions 'no' option no longer exists | ||
- Sorting ascend / descend no longer has subsorting by position. | ||
- --quiet / -q option no longer exists. | ||
- bed files in computeMatrix no longer support '#' to define groups. | ||
- 'chromosome matching' i.e. chr1 <-> 1, chrMT <-> MT is no longer performed. | ||
|
||
Exactscaling is no longer an option, it's always performed. | ||
## normalization | ||
|
||
- Exactscaling is no longer an option, it's always performed. | ||
|
||
## alignmentSieve | ||
|
||
- options label, smartLabels, genomeChunkLength are removed. | ||
- ignoreDuplicates is removed, and (if wanted) should be set by the SamFlagExclude setting. | ||
|
||
# Testing | ||
|
||
## computeMatrix | ||
- referencePoint: TSS, center, TES | ||
- sortRegions: descend, ascend, keep | ||
- sortUsing: mean, median, max, min, sum, region_length | ||
- averageTypeBins: mean, median, min, max ,std, sum | ||
- skipZeros | ||
- duplicate renaming _r1, _r2, ... | ||
- GTF, BED3, BED6, BED12, mixedBED (?) | ||
- scaleRegions, un5, un3, regionbodylength, metagene | ||
|
||
## alignmentSieve | ||
|
||
- unmapped reads to unfiltered_out | ||
|
||
# Todo | ||
|
||
- allow multithreaded bw writing | ||
- properly divide region work over threads -> region sorting & taking size into account | ||
|
||
- AlignmentSieve: Shift, Bed, Optimization. | ||
- bamCoverage / bamCompare: filtering, extend. |
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
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
Oops, something went wrong.