gitextract_0q2fbl_h/ ├── .gitignore ├── .travis.yml ├── CHANGELOG.rst ├── DESCRIPTION.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── pyGeno/ │ ├── Chromosome.py │ ├── Exon.py │ ├── Gene.py │ ├── Genome.py │ ├── Protein.py │ ├── SNP.py │ ├── SNPFiltering.py │ ├── Transcript.py │ ├── __init__.py │ ├── bootstrap.py │ ├── bootstrap_data/ │ │ ├── SNPs/ │ │ │ ├── Human_agnostic.dummySRY_indels/ │ │ │ │ ├── manifest.ini │ │ │ │ └── snps.txt │ │ │ └── __init__.py │ │ ├── __init__.py │ │ └── genomes/ │ │ └── __init__.py │ ├── configuration.py │ ├── doc/ │ │ ├── Makefile │ │ ├── make.bat │ │ └── source/ │ │ ├── bootstraping.rst │ │ ├── citing.rst │ │ ├── conf.py │ │ ├── datawraps.rst │ │ ├── importation.rst │ │ ├── index.rst │ │ ├── installation.rst │ │ ├── objects.rst │ │ ├── parsers.rst │ │ ├── publications.rst │ │ ├── querying.rst │ │ ├── quickstart.rst │ │ ├── snp_filter.rst │ │ └── tools.rst │ ├── examples/ │ │ ├── __init__.py │ │ ├── bootstraping.py │ │ └── snps_queries.py │ ├── importation/ │ │ ├── Genomes.py │ │ ├── SNPs.py │ │ └── __init__.py │ ├── pyGenoObjectBases.py │ ├── tests/ │ │ ├── __init__.py │ │ ├── test_csv.py │ │ └── test_genome.py │ └── tools/ │ ├── BinarySequence.py │ ├── ProgressBar.py │ ├── SecureMmap.py │ ├── SegmentTree.py │ ├── SingletonManager.py │ ├── Stats.py │ ├── UsefulFunctions.py │ ├── __init__.py │ ├── io.py │ └── parsers/ │ ├── CSVTools.py │ ├── CasavaTools.py │ ├── FastaTools.py │ ├── FastqTools.py │ ├── GTFTools.py │ ├── VCFTools.py │ └── __init__.py └── setup.py