{ "info": { "author": "Mans Magnusson", "author_email": "mans.magnusson@scilifelab.se", "bugtrack_url": null, "classifiers": [], "description": "# Mip Family Analysis #\n\n\nTool for analyzing variants in a family setting with the mip pipeline.\nAnnotates and evalautes all variants according to genetic models, frequency in population etc.\n\nAt the moment, usage is only checked with python version 2.7.\n\nmip_family_analysis needs *pip* to install proper.\nTo install, run\n\n```\n pip install mip_family_analysis \n \n```\n\nBasic usage:\n```\nrun_mip_family_analysis ped_file annotated_variant_file --outfile results.txt\n\n```\n\n## Structure ##\n\nThe package includes the following classes, from bottom up:\n\n### Genotype ###\n\nStore the genotype information of a variant that is specific for an *individual*\n\n### Variant ###\n\nHolds the info of a variant and it's specific behaviour in a *family*.\n\n### Individual ###\n\nHolds the information about an individual and the individual specific genotypes.\n\n*Has*\n\n* Genotype\n\n### Family ###\n\nStore the information of a family, including all family members and the union of all variants for this family.\n\n*Has*\n\n* Individual\n* Variant\n\n## Conditions for Genetic Models ##\n\nShort explanation of the genotype calls in vcf format.\n\nSince we only look at humans, that are diploid, the genotypes represent what we see on both alleles in a single position.\n0 represents the reference sequence, 1 is the first of the alternative alleles, 2 second alternative and so on.\nIf no phasing has been done the genotype is an unordered pair on the form x/x, so 0/1 means that the individual is heterozygote in this given position with the reference base on one of the alleles and the first of the alternatives on the other.\n2/2 means that we see the second of the alternatives on both alleles.\nSome chromosomes are only present in one copy in humans, here it is allowed to only use a single digit to show the genotype. A 0 would mean reference and 1 first of alternatives.\n\nIf phasing has been done the pairs are not unordered anymore and the delimiter is then changed to '|', so one can be heterozygote in two ways; 0|1 or 1|0.\n\n\n### Autosomal Recessive ###\n\nFor this model an individual can be a carrier, so healthy individuals can be heterozygous. Both alleles need to have the variant for an individual to be sick so a healthy individual can not be homozygous alternative and a sick individual has to be homozygous alternative.\n\n1. If individual is healthy:\n\t* Can be a carrier so 0/1 is ok\n\t* Can have ref call or no call so 0/0 and ./. is ok\n\t* Can not be homozygote alternative, so 1/1 is NOT ok.\n \t\n \n2. If individual is sick:\n\t* Can not be a carrier so 0/1 is not ok.\n\t* Can not have ref call 0/0 is not ok\n\t* Must be homozygote alternative so 1/1, 2/2, ... are ok if parents are heterozygotes, otherwise the variant follows follows Autosomal Recessive De Novo.\n\t* No call, ./., is ok since we can not exclude the model by this.\n\n### Autosomal Recessive De Novo ###\n\nSame as above but with the difference that one or both of the parents are missing the genotypes.\n\n### Autosomal Dominant ###\n\nHere it is enough that one of the alleles have the variant for an individual to be sick.\n\n1. If individual is healthy:\n\t* Can not be a carrier so 0/1 is NOT ok\n\t* Can have ref call or no call so 0/0 and ./. is ok\n\t* Can not be homozygote so 1/1 is NOT ok.\n\t\n\n2. If individual is sick:\n\t* Can be heterozygous so 0/1 is ok, should be found in any of the parents otherwise de novo.\n\t* Can not have ref call, so 0/0 is not ok\n\t* Can be homozygote alternative so 1/1, 2/2, ... are ok if parents are sick and heterozygote or affected homozygotes, otherwise the individual follows Autosomal Dominant De Novo.\n\n\n### Autosomal Dominant De Novo ###\n\nSame as above but with the difference that one or both of the parents are missing the genotypes.\n\n\n### Autosomal Compound Heterozygote ###\n\nHere we are looking at pairs of *heterozygote* variants that are located within the same gene. For two variants to qualify for being compound pair they have to be present together in a affected individual but can **not** be present together in any of the healthy individuals.\nSo *one and only one*, variant should be found in each parent, otherwise the variant follows the pattern of compound heterozygote de novo.\n\nOne of the problems here is that a compound heterozygote can exist in different ways such that they can be deleterious or not. \nIf we do not have the phasing information from the individuals, that is if we have not resolved on which alleles the variants that we look at are located on, we can not say if a pair is deleterious or not.\n\nRight now this is how we do this:\n\n1. If individual is healthy:\n\t* Can be a carrier so 0/1 is ok\n\t* Can have ref call or no call so 0/0 and ./. is ok\n\t* Can not be homozygote alternative, so 1/1 is NOT ok.\n \t\n \n2. If individual is sick:\n\t* Can be a carrier so 0/1 is not ok.\n\t* Can not have ref call, 0/0 is not ok\n\t* Must make sure that each of the parents carry one (and only one) of the variants in the potential pair each.\n\t* No call, ./., is ok since we can not exclude the model by this.\n \n### Autosomal Compound Heterozygote De Novo ###\n\nSame as above but one of the variants are not seen in the parents.\n\n### X Linked ###\n\nThese traits are inherited on the x-chromosome, of which men have one allele and women have two. This means that woman's can be carries but men get affected if they get the variant. It is rare that women get these type of disease since they have to inherit a variant from both parents which implies that the father has to be sick. \n\n1. If individual is healthy:\n\t* If woman: can be a carrier so 0/1 is ok\n\t* If man: can not be a carrier so 0/1 is not ok\n\t* Can have ref call or no call so 0/0 and ./. is ok\n\t* Can not be homozygote alternative, so 1/1 is NOT ok.\n \t\n \n2. If individual is sick:\n\t* If woman: can be a carrier so 0/1 is not ok.\n\t* Can not have ref call, 0/0 is not ok\n\t* No call, ./., is ok since we can not exclude the model by this.\n\n\n\n### X Linked De Novo ###\n\nSame as above but variant is not seen in any of the parents.\n\n## Detailed Structure ##\n\nHere all attributes and methods of the classes will be showed:\n\n### Genotype ###\n\nStore the genotype information of a variant that is specific for an individual\n\n**Attributes:**\n\n* genotype STRING\n* allele_1 STRING\n* allele_2 STRING\n* nocall BOOL\n* heterozygote BOOL\n* homo_alt BOOL\n* homo_ref BOOL\n* has_variant BOOL\n* filter STRING\n* ref_depth INT\n* alt_depth INT\n* phred_likelihoods TUPLE with INT\n* depth_of_coverage INT\n* genotype_quality FLOAT\n\n\n### Variant ###\n\nHolds the info of a variant and it's specific behaviour in a family.\n\n**Attributes**\n\n* chr STRING Have to be string since X, Y\n* start INT\n* stop INT \n* ref STRING Reference nucleotide(s)\n* alt STRING Alternative sequence\n* identity STRING dbSNP-id\n* var_info DICT A dictionary with all the info from the variant file\n* qual STRING A value for the score of the base call\n* filter STRING The filter status\n* genotypes LIST A list with the genotypes found for this variants\n* gene STRING Semicolon separated string with ensemble gene names\n* ad BOOL If following Autosomal Dominant pattern\n* ad_dn BOOL If following Autosomal Dominant De novo pattern\n* ar BOOL If following Autosomal Recessive pattern\n* ar_dn BOOL If following Autosomal Recessive De nove pattern\n* ar_comp BOOL If following Autosomal Recessive compound pattern\n* ar_comp_dn BOOL If following Autosomal Recessive Compound De Novo pattern\n\n**Methods**\n\n* get_variant(self):\n\tReturns a dictionary with basic info to stdout\n* print_model_info(self):\n\tPrint for each variant which patterns of inheritance they follow.\t\n* print_vcf_variant(self):\n\tPrint the variant in vcf-format to stdout\n* print_original_version(self, header_columns):\n\tPrints the variant in its original format.\n* check_noncomplete_call(self):\n\tCheck if GATK have missed to report some info.\n* get_genotype(self):\n\tReturns the list with genotypes for this variant.\n\n\n### Individual ###\n\nHolds the information about an individual and the individual specific genotypes.\n\n**Attributes**\n\n* ind STRING Can be any id unique within the family\n* family STRING Can be any unique id within the cohort\n* mother STRING The ind_id of the mother or [0,-9] if info is missing\n* father STRING ---------||------ father --------------||---------------\n* sex INT 1=male 2=female 0=unknown\n* phenotype INT 1=unaffected, 2=affected, missing = [0,-9]\n* genotypes DICT Container with genotype information on the form {: }\n* phasing BOOL If the genotype information includes phasing for this individual\n\n### Family ###\n\n**Attributes**\n\n* individuals DICT dictionary with family members on the form {:}\n* variants DICT dictionary with all the variants that exists in the family on the form {:}", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/moonso/Mip_Family_Analysis", "keywords": null, "license": "UNKNOWN", "maintainer": null, "maintainer_email": null, "name": "mip_family_analysis", "package_url": "https://pypi.org/project/mip_family_analysis/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/mip_family_analysis/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/moonso/Mip_Family_Analysis" }, "release_url": "https://pypi.org/project/mip_family_analysis/0.9.4/", "requires_dist": null, "requires_python": null, "summary": "A new tool for doing inheritance analysis and scoring in the mip pipeline.", "version": "0.9.4" }, "last_serial": 1098050, "releases": { "0.5": [ { "comment_text": "", "digests": { "md5": "586585f3ae12ebe8ccca4e02d9097bdb", "sha256": "e0757e8b041565f47195246fe1e4a0bc2a8fc0558ad276c662c7431d07a89c0e" }, "downloads": -1, "filename": "mip_family_analysis-0.5.tar.gz", "has_sig": false, "md5_digest": "586585f3ae12ebe8ccca4e02d9097bdb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22839, "upload_time": "2014-01-27T13:17:10", "url": "https://files.pythonhosted.org/packages/18/5c/1da99ded7c6ec707a350a42fb759c5d673b1d4b2db049a22c8a3d819fbae/mip_family_analysis-0.5.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "7c203fa439cff5c8cbe7152b0dce77ab", "sha256": "5b7d6e471053e72bb9745a48c0b98ffbd20413606692360786895a9ba99e1327" }, "downloads": -1, "filename": "mip_family_analysis-0.5.1.tar.gz", "has_sig": false, "md5_digest": "7c203fa439cff5c8cbe7152b0dce77ab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22850, "upload_time": "2014-01-27T13:26:18", "url": "https://files.pythonhosted.org/packages/28/69/40ffa5459b61e95146ac49b2b504c8e2efb2bbae0f25983a81b207ab07a6/mip_family_analysis-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "2c7bd73bbb71c6e337cf24e210c10f11", "sha256": "86b8b013511d68e177830b62d905b136a877caf85770cdd0bb0517ae3c3e9d48" }, "downloads": -1, "filename": "mip_family_analysis-0.5.2.tar.gz", "has_sig": false, "md5_digest": "2c7bd73bbb71c6e337cf24e210c10f11", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22849, "upload_time": "2014-01-27T14:31:35", "url": "https://files.pythonhosted.org/packages/43/95/778f84096b9d7dd5d438cb6e964acca6f3506ebbb81bee1e8d26e7709249/mip_family_analysis-0.5.2.tar.gz" } ], "0.5.5": [ { "comment_text": "", "digests": { "md5": "c162bb0a2cc13e6b648802a66a22a17e", "sha256": "0a495cccab44f5690b0ff1344db462b33950264a6436de61168d28e1a5e279d0" }, "downloads": -1, "filename": "mip_family_analysis-0.5.5.tar.gz", "has_sig": false, "md5_digest": "c162bb0a2cc13e6b648802a66a22a17e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25494, "upload_time": "2014-02-03T12:49:03", "url": "https://files.pythonhosted.org/packages/1e/b9/8829da684804f87dec85a9d69f4d8c981b97b386f7d3523e693e45897082/mip_family_analysis-0.5.5.tar.gz" } ], "0.5.6": [ { "comment_text": "", "digests": { "md5": "2120fd6f97a128e39cb1ec8051f8ebc5", "sha256": "a66351a9d55f5fc3fd806cd8321a237dac56b9c5b5cc66d1e34a18da719f7b52" }, "downloads": -1, "filename": "mip_family_analysis-0.5.6.tar.gz", "has_sig": false, "md5_digest": "2120fd6f97a128e39cb1ec8051f8ebc5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25590, "upload_time": "2014-02-04T09:52:18", "url": "https://files.pythonhosted.org/packages/f4/ea/8869d12f4472dc64c1480b54fa3d81f9060294d4c2a4b4f8d4b6d2376761/mip_family_analysis-0.5.6.tar.gz" } ], "0.5.7": [ { "comment_text": "", "digests": { "md5": "b701e7b56dd56f2cbc55e78054ac14e9", "sha256": "2a7d75adfe5a34a3e23c95b047868d4cae970d490dea4f93b763ee55e8764272" }, "downloads": -1, "filename": "mip_family_analysis-0.5.7.tar.gz", "has_sig": false, "md5_digest": "b701e7b56dd56f2cbc55e78054ac14e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25506, "upload_time": "2014-02-04T11:59:08", "url": "https://files.pythonhosted.org/packages/99/33/3a855dde77bfc03299116e0e1292c74ffcfb29a4cdd5f606564e69e3245d/mip_family_analysis-0.5.7.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "4195bd89f5d5f6bf8e0a70c72843e102", "sha256": "76b6ad9fec221715d8069a71bffe2e7c16dd04d962e921490ea395a843ae76f9" }, "downloads": -1, "filename": "mip_family_analysis-0.6.tar.gz", "has_sig": false, "md5_digest": "4195bd89f5d5f6bf8e0a70c72843e102", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25728, "upload_time": "2014-02-04T14:26:47", "url": "https://files.pythonhosted.org/packages/9a/67/57b5d9a705594e35b7d193dfac0498a2bee1e6870929aac2a9e067b0ef7c/mip_family_analysis-0.6.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "d6946ac87ed51fa853901f1406437edd", "sha256": "16dc51506b376ba6321c46d4e308e5b93e71921ef408362ab00839570386364c" }, "downloads": -1, "filename": "mip_family_analysis-0.6.1.tar.gz", "has_sig": false, "md5_digest": "d6946ac87ed51fa853901f1406437edd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22974, "upload_time": "2014-02-06T15:04:44", "url": "https://files.pythonhosted.org/packages/71/0f/fedf84ca25332295f5245a51c85794ed19e160d5e94d0d24e0c0221360ec/mip_family_analysis-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "d27c38b7284207bc69cb5b7de43f368c", "sha256": "a35ba5da933a2de3e39273c9d143bf755c146aabcdd8ea4883e26f076f989c63" }, "downloads": -1, "filename": "mip_family_analysis-0.6.2.tar.gz", "has_sig": false, "md5_digest": "d27c38b7284207bc69cb5b7de43f368c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23042, "upload_time": "2014-02-10T11:05:51", "url": "https://files.pythonhosted.org/packages/66/8a/857757d61c7b424f63a7aeb1ec0b1fad1806663d7971111ad25a8b901c62/mip_family_analysis-0.6.2.tar.gz" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "3e0472a2c94ef97fba2a7300bef1e11d", "sha256": "0200b917c47c67d4293bde2ab5f3736a9aed55066f8e4ea303269fe980f25e9e" }, "downloads": -1, "filename": "mip_family_analysis-0.6.3.tar.gz", "has_sig": false, "md5_digest": "3e0472a2c94ef97fba2a7300bef1e11d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24030, "upload_time": "2014-02-11T17:30:04", "url": "https://files.pythonhosted.org/packages/38/2f/18be5020411a789196b76783ffe95b8589dc63ac4b6c72994866c9671319/mip_family_analysis-0.6.3.tar.gz" } ], "0.6.4": [ { "comment_text": "", "digests": { "md5": "db46e5464e0390ab11ec6d4bd617af57", "sha256": "3366f632df57f79c90fbd8739c5f5a07e22bc18f6f7dd9003e9ee82ad1916d58" }, "downloads": -1, "filename": "mip_family_analysis-0.6.4.tar.gz", "has_sig": false, "md5_digest": "db46e5464e0390ab11ec6d4bd617af57", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24035, "upload_time": "2014-02-12T07:55:04", "url": "https://files.pythonhosted.org/packages/c7/38/6029239c2deb32f2cc3c0761d0b4924884473bb76ff0baf89c8092f9eaf5/mip_family_analysis-0.6.4.tar.gz" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "44f444f6a48689d90f01c62c33628bbd", "sha256": "ed2fe94571715dd7a15d5b9ebe34b2025c68eed7e36490f407096f51ddf4ddd1" }, "downloads": -1, "filename": "mip_family_analysis-0.7.tar.gz", "has_sig": false, "md5_digest": "44f444f6a48689d90f01c62c33628bbd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25142, "upload_time": "2014-02-14T15:18:09", "url": "https://files.pythonhosted.org/packages/1b/ad/c2d43a107d2dd5e9177f13a959ce425560972bb1ba53217cb04ebaacb96d/mip_family_analysis-0.7.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "fc51dea4e637cb559d625b13ddf0eea7", "sha256": "b9a422e2c205561895fa263f2d31a9f2b9de2cbf24d476771a273b82d5ed7e54" }, "downloads": -1, "filename": "mip_family_analysis-0.7.1.tar.gz", "has_sig": false, "md5_digest": "fc51dea4e637cb559d625b13ddf0eea7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25153, "upload_time": "2014-02-14T15:37:29", "url": "https://files.pythonhosted.org/packages/98/16/813ec8cff3b6bfb5a7a94c35b07262440156b488acca8b6fc7735507c69c/mip_family_analysis-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "c0ac32d0270138bcd012f34ec9af157f", "sha256": "c8ef3c34a4f48b0de9daec37318564fc08263015afa70b2cab704bde980e277d" }, "downloads": -1, "filename": "mip_family_analysis-0.7.2.tar.gz", "has_sig": false, "md5_digest": "c0ac32d0270138bcd012f34ec9af157f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25236, "upload_time": "2014-02-16T09:58:49", "url": "https://files.pythonhosted.org/packages/7e/c8/325dd53ddfc3a875e2cb8e1c90384552ffa514db4734a983c318b306138f/mip_family_analysis-0.7.2.tar.gz" } ], "0.7.3": [ { "comment_text": "", "digests": { "md5": "57e4e798dd5317fdc59ab12d08c91c0c", "sha256": "c1d69b1988a9bd1aa01b41ff5cae7d9e8c44bc206b4eadbe8639c4db6a523060" }, "downloads": -1, "filename": "mip_family_analysis-0.7.3.tar.gz", "has_sig": false, "md5_digest": "57e4e798dd5317fdc59ab12d08c91c0c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25284, "upload_time": "2014-02-16T22:26:30", "url": "https://files.pythonhosted.org/packages/5a/60/7294c585b3d675ffc606be4f9550ca030b336983632d5c5ffda20ee47bf4/mip_family_analysis-0.7.3.tar.gz" } ], "0.8": [ { "comment_text": "", "digests": { "md5": "9f93d8b1c4c5b271e1fd1053213ccc87", "sha256": "58a2f1d21c35787c1f8fd8130d248128cb567901a4e76e9061406a081802421b" }, "downloads": -1, "filename": "mip_family_analysis-0.8.tar.gz", "has_sig": false, "md5_digest": "9f93d8b1c4c5b271e1fd1053213ccc87", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25329, "upload_time": "2014-02-24T07:35:08", "url": "https://files.pythonhosted.org/packages/38/8e/501eb707ea4baca9ca11724cf6a672ae2d1620ae0e5c25aaecc7603b74da/mip_family_analysis-0.8.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "fd604cc92e8ed2cf6e079d5cc46302cf", "sha256": "493b8cfb8c554e684131157bda351a16552429d0dffc09a2cc0154971b071200" }, "downloads": -1, "filename": "mip_family_analysis-0.8.1.tar.gz", "has_sig": false, "md5_digest": "fd604cc92e8ed2cf6e079d5cc46302cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25338, "upload_time": "2014-02-24T09:06:11", "url": "https://files.pythonhosted.org/packages/db/bd/f5ba885764325e3afafe4f05a749f6f64d119370a4ca011cec27a75653f3/mip_family_analysis-0.8.1.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "acf32a1a2fa1eed04e0c04afa4004bec", "sha256": "38d4794217068ae3b535aa26eff3c33402fb17cb5371bca5871167fb1530bf05" }, "downloads": -1, "filename": "mip_family_analysis-0.8.2.tar.gz", "has_sig": false, "md5_digest": "acf32a1a2fa1eed04e0c04afa4004bec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25335, "upload_time": "2014-02-25T10:14:56", "url": "https://files.pythonhosted.org/packages/2c/80/b40cec000baaa2827973f0ba2de1b90ec84681c6e69525ed64cb99ca6cdb/mip_family_analysis-0.8.2.tar.gz" } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "d265241c7e3bfcad9d542c4262d131dd", "sha256": "a91595cb3f06e47a707700921f5b7467382682fe5bb251e91ab9edc1e7ca7bdc" }, "downloads": -1, "filename": "mip_family_analysis-0.8.3.tar.gz", "has_sig": false, "md5_digest": "d265241c7e3bfcad9d542c4262d131dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25382, "upload_time": "2014-02-25T17:43:59", "url": "https://files.pythonhosted.org/packages/a9/eb/7ac461c9f10ca5580070cc36095a8e8d6328062eef539e9f8921a29e901f/mip_family_analysis-0.8.3.tar.gz" } ], "0.8.4": [ { "comment_text": "", "digests": { "md5": "88efab647ba500d5612936cebf8cbabf", "sha256": "3e977caee16307885c84454b40a38f5cdd01303b602ffdba30b14a1f70d62ad3" }, "downloads": -1, "filename": "mip_family_analysis-0.8.4.tar.gz", "has_sig": false, "md5_digest": "88efab647ba500d5612936cebf8cbabf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25676, "upload_time": "2014-02-26T16:11:45", "url": "https://files.pythonhosted.org/packages/d6/c5/c4e640fa88e2abdc69a2275818e6c0e5caedb428ece74d1c67a17ba0de81/mip_family_analysis-0.8.4.tar.gz" } ], "0.8.5": [ { "comment_text": "", "digests": { "md5": "429ee82b3e73bae4f14791dbffad46d6", "sha256": "5efb66f17fd583f9118f4eeb3da27d283d40c34ea46e162ca6c448de4e024923" }, "downloads": -1, "filename": "mip_family_analysis-0.8.5.tar.gz", "has_sig": false, "md5_digest": "429ee82b3e73bae4f14791dbffad46d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25723, "upload_time": "2014-02-28T12:53:53", "url": "https://files.pythonhosted.org/packages/d4/65/949631e213c8973447527ddf2900cbcfd70289dd0e763cc718407d2f8bb1/mip_family_analysis-0.8.5.tar.gz" } ], "0.8.7": [ { "comment_text": "", "digests": { "md5": "a8f64307fe3d8f55c651998f858467c6", "sha256": "43b66bc3a33987dcf518f53df2b2294f724d2b2e901a2b8a5b58c64d8ae082e8" }, "downloads": -1, "filename": "mip_family_analysis-0.8.7.tar.gz", "has_sig": false, "md5_digest": "a8f64307fe3d8f55c651998f858467c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25772, "upload_time": "2014-03-19T07:43:53", "url": "https://files.pythonhosted.org/packages/e2/a5/a9a2823abe3063f9833e78b6e6221e631e9ed572b6808c840d386f88e04a/mip_family_analysis-0.8.7.tar.gz" } ], "0.9": [ { "comment_text": "", "digests": { "md5": "974da13f1429020d516fcc5d712d4f78", "sha256": "60ef102b088d107eff0cd943eccb5858a7885567fa014685b69125fab9a831b3" }, "downloads": -1, "filename": "mip_family_analysis-0.9.tar.gz", "has_sig": false, "md5_digest": "974da13f1429020d516fcc5d712d4f78", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25799, "upload_time": "2014-04-07T12:59:23", "url": "https://files.pythonhosted.org/packages/ee/81/b16c9cba2f4c74c217b4ec2b6ae45d8e33012f204d6bf59cec90193d08e0/mip_family_analysis-0.9.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "dea01ff542d242a98e40a277a5e9c54d", "sha256": "f4e879e6c1bd7f61060a017aa3ca3da56d7a6a6badeefae104daae40244cd418" }, "downloads": -1, "filename": "mip_family_analysis-0.9.1.tar.gz", "has_sig": false, "md5_digest": "dea01ff542d242a98e40a277a5e9c54d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25824, "upload_time": "2014-04-07T14:22:13", "url": "https://files.pythonhosted.org/packages/f1/c4/e89e386453a46624926e9f501c3db46a12628aff6b6a747abace659e8b1a/mip_family_analysis-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "9fbda661d45023a3b6fe73f8f9515a8f", "sha256": "2075e812f443024f92a89c35bb862d511029830ae71116dc2510ac06df64b1fa" }, "downloads": -1, "filename": "mip_family_analysis-0.9.2.tar.gz", "has_sig": false, "md5_digest": "9fbda661d45023a3b6fe73f8f9515a8f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21525, "upload_time": "2014-04-25T09:39:03", "url": "https://files.pythonhosted.org/packages/5c/44/d3766774008c1fc22cc25c05f3e854ffc2f57f98ad41a8a69d75d66a5b58/mip_family_analysis-0.9.2.tar.gz" } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "ad4a709d2fcadc0a07ee26924246cfb6", "sha256": "346a07ef92827d91795dc82df5910a25c9256358dead4d4f489e8c8650d80af7" }, "downloads": -1, "filename": "mip_family_analysis-0.9.3.tar.gz", "has_sig": false, "md5_digest": "ad4a709d2fcadc0a07ee26924246cfb6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21448, "upload_time": "2014-04-25T15:24:00", "url": "https://files.pythonhosted.org/packages/7d/4d/3ddfa4c7c4a6c871d92f99e6d4b65a971a8e09019ee8355bb4a7aed14d88/mip_family_analysis-0.9.3.tar.gz" } ], "0.9.4": [ { "comment_text": "", "digests": { "md5": "112e97c756dad74ba896820dac36d5e8", "sha256": "e4fe95cbee13df3b48c5da470cf1501fde98cbbffd6c82a2563c3c1dc73b678d" }, "downloads": -1, "filename": "mip_family_analysis-0.9.4.tar.gz", "has_sig": false, "md5_digest": "112e97c756dad74ba896820dac36d5e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21456, "upload_time": "2014-05-20T08:29:47", "url": "https://files.pythonhosted.org/packages/ee/84/d8f5269765b74f91063af4ec15e0a36b806a258a19614c7a70c162bb538c/mip_family_analysis-0.9.4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "112e97c756dad74ba896820dac36d5e8", "sha256": "e4fe95cbee13df3b48c5da470cf1501fde98cbbffd6c82a2563c3c1dc73b678d" }, "downloads": -1, "filename": "mip_family_analysis-0.9.4.tar.gz", "has_sig": false, "md5_digest": "112e97c756dad74ba896820dac36d5e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21456, "upload_time": "2014-05-20T08:29:47", "url": "https://files.pythonhosted.org/packages/ee/84/d8f5269765b74f91063af4ec15e0a36b806a258a19614c7a70c162bb538c/mip_family_analysis-0.9.4.tar.gz" } ] }