Skip to content
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

EVA-1665 VCF headers list the contigs in accession order #172

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Commits on Sep 13, 2019

  1. use system sort for the list of contigs

    Of course this is platform dependent, but given that we have some
    species with lots of contigs (e.g. almost 0.5M for rat or turkey),
    we can either:
    
    - keep the hacky implementation of this commit.
    - evaluate memory performance of: loading the file into
    a list, sort the list in memory, write the list. For at least a
    couple million of 20 bytes strings.
    
    If we go for the second option, the changes have to be done in the
    same place as the current system sort.
    jmmut committed Sep 13, 2019
    Configuration menu
    Copy the full SHA
    9c6a5c0 View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2019

  1. Configuration menu
    Copy the full SHA
    787a5de View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3460e52 View commit details
    Browse the repository at this point in the history