5

I am currently looking for a piece of software which will be able to map a very large number of GEDCOM files (for around 33,000 individuals) as well as working out ancestral and individual inbreeding coefficients. Does anyone know of any software which is capable????

Thanks

Dale Athanasias
  • 471
  • 3
  • 16
Abbey
  • 51
  • 3
  • I know you asked this long ago, but if you're still here, I'm really wondering why you would need to know the inbreeding coefficient of everyone? – lkessler Jan 27 '16 at 06:45

3 Answers3

2

I don't think you will find any software that does this for you, but it wouldn't be too difficult to write your own. I would take one of the many open source gedcom parsers out there and add the individuals to a graph database such as Neo4j. Once it is in Neo4j, it should be relatively easy to run your calculations on the individuals.

Jay Askren
  • 10,282
  • 14
  • 53
  • 75
2

GeneWeb (written in ML) handles large files very well and has fast consanguinity coefficient computing. I believe it calculates the consanguinity coefficient for every individual in the database upon import, and it does this within a couple seconds. It also displays arbitrarily deep ancestry and descendant trees without any noticeable lag.

http://cristal.inria.fr/~ddr/GeneWeb/en/index.html#Par

It can also handle an arbitrary number of GEDCOMs.

mwhite
  • 2,041
  • 1
  • 16
  • 21
1

You might be interested in Pypedal Python Pedigree Analysis which is a Python module that provides tools for the manipulation of pedigrees, simple visualization of pedigrees, and the calculation of measures of genetic diversity from pedigrees.

1.01pm
  • 841
  • 1
  • 12
  • 23