-
Notifications
You must be signed in to change notification settings - Fork 34
Merge in consensus changes to master #341
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
ccc9170
Phasing reworekd
Dmitry-Antipov 159186c
Merge remote-tracking branch 'origin/chrY_fix'
e074229
Cleanup
Dmitry-Antipov 1855544
update MBG version
d4b403a
update canu branch and consensus options for consensus updates
958f22e
move index only on successfull completion, safety in case jobs termin…
5fe146a
update gap filling criteria, disallow single read gap closing
fb5bd61
add bamtools, pysam, samtools, seqtk to dependencies and fix CI test
skoren a795867
add utility script to convert from utig4- paths to utig1- paths
5fbe6f4
utig4 tranlation handle overlaps containing full utig1- nodes
43aefba
fix for empty partitions
Dmitry-Antipov 221f7a9
fix handling of offset for repeated nodes
5e0a871
changed logic for filtering hic reads from similar regions
Dmitry-Antipov c1a8675
logging simplified
Dmitry-Antipov 70d6ce5
missed makefile change
Dmitry-Antipov 613079d
excessive requirement removed
Dmitry-Antipov 74bbdce
fix name typo
62594e1
increase open files while sorting bam outputs
9f1f959
update canu tag
34cd469
copilot fixes
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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
Submodule MBG
updated
from f312a8 to 8fc6ca
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Submodule canu
updated
12 files
| +1 −0 | src/stores/sqCache.C | |
| +7 −5 | src/stores/tgTig.C | |
| +13 −2 | src/stores/tgTig.H | |
| +7 −6 | src/utgcns/layoutToPackage.C | |
| +16 −16 | src/utgcns/libpbutgcns/AlnGraphBoost.C | |
| +7 −7 | src/utgcns/libpbutgcns/AlnGraphBoost.H | |
| +372 −102 | src/utgcns/unitigConsensus.C | |
| +15 −4 | src/utgcns/unitigConsensus.H | |
| +1 −1 | src/utgcns/utgcns-processTigs.C | |
| +4 −0 | src/utgcns/utgcns.C | |
| +1 −0 | src/utgcns/utgcns.H | |
| +1 −1 | src/utility |
This file contains hidden or 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 hidden or 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 hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] The memory calculation uses magic number 70 (70% of memory). Consider defining this as a variable with a descriptive name like
MEM_USAGE_PERCENT=70to improve clarity and maintainability.