{ "info": { "author": "Hadrien Gourl\u00e9", "author_email": "hadrien.gourle@slu.se", "bugtrack_url": null, "classifiers": [], "description": "# InSilicoSeq\n\n## A sequencing simulator\n\n[![Build Status](https://github.com/HadrienG/InsilicoSeq/workflows/CI/badge.svg)](https://github.com/HadrienG/InSilicoSeq/actions)\n[![Documentation Status](https://readthedocs.org/projects/insilicoseq/badge/?version=latest)](http://insilicoseq.readthedocs.io/en/latest/?badge=latest)\n[![PyPI version](https://badge.fury.io/py/InSilicoSeq.svg)](https://badge.fury.io/py/InSilicoSeq)\n[![codecov](https://codecov.io/gh/HadrienG/InSilicoSeq/branch/master/graph/badge.svg)](https://codecov.io/gh/HadrienG/InSilicoSeq)\n[![doi](https://img.shields.io/badge/doi-10.1093%2Fbioinformatics%2Fbty630-blue.svg)](https://doi.org/10.1093/bioinformatics/bty630)\n[![LICENSE](https://img.shields.io/badge/license-MIT-lightgrey.svg)](LICENSE)\n\nInSilicoSeq is a sequencing simulator producing realistic Illumina reads.\nPrimarily intended for simulating metagenomic samples, it can also be used to produce sequencing data from a single genome.\n\nInSilicoSeq is written in python, and use kernel density estimators to model the read quality of real sequencing data.\n\nInSilicoSeq support substitution, insertion and deletion errors. If you don't have the use for insertion and deletion error a basic error model is provided.\n\n## Installation\n\nInsilicoseq is Available in [bioconda](https://bioconda.github.io/).\n\nTo install with conda:\n\n```shell\nconda install -c bioconda insilicoseq\n```\n\nOr with pip:\n\n```shell\npip install InSilicoSeq\n```\n\n_Note:_ Insilicoseq requires python >= 3.5 \n\nAlternatively, with docker:\n\n```shell\ndocker pull hadrieng/insilicoseq:latest\n```\n\nFor more installation options, please refer to the full [documentation](http://insilicoseq.readthedocs.io)\n\n## Usage\n\nInSilicoSeq has two subcommands: `iss generate` to generate Illumina reads and `iss model` to create an error model from which the reads will take their characteristics.\n\nInSilicoSeq comes with pre-computed error models that should be sufficient for most use cases.\n\n### Generate reads with a pre-computed error model\n\nfor generating 1 million reads modelling a MiSeq instrument:\n\n```shell\ncurl -O -J -L https://osf.io/thser/download # download the example data\niss generate --genomes SRS121011.fasta --model miseq --output miseq_reads\n```\n\nwhere `genomes.fasta` should be replaced by a (multi-)fasta file containing the reference genome(s) from which the simulated reads will be generated.\n\nInSilicoSeq comes with 3 error models: `MiSeq`, `HiSeq` and `NovaSeq`.\n\nIf you have built your own model, pass the `.npz` file to the `--model` argument to simulate reads from your own error model.\n\nFor 10 million reads and a custom error model:\n\n```shell\ncurl -O -J -L https://osf.io/thser/download # download the example data\niss generate -g SRS121011.fasta -n 10m --model my_model.npz --output /path/to/my_reads\n```\n\ngranted you have built `my_model.npz` with `iss model` (see [below](#create-your-own-error-model))\n\nFor more examples and a full list of options, please refer to the full\n[documentation](http://insilicoseq.readthedocs.io)\n\n### Generate reads without input genomes\n\nWe can download some for you! InSilicoSeq can download random genomes from the ncbi using the infamous [eutils](https://www.ncbi.nlm.nih.gov/books/NBK25501/)\n\nThe command\n\n```shell\niss generate --ncbi bacteria -u 10 --model MiSeq --output ncbi_reads\n```\n\nwill generate 1 million reads from 10 random bacterial genomes.\n\nFor more examples and a full list of options, please refer to the full [documentation](http://insilicoseq.readthedocs.io)\n\n### Create your own error model\n\nIf you do not wish to use the pre-computed error models provided with InSilicoSeq, it is possible to create your own.\n\nSay you have a reference metagenome called `genomes.fasta`, and read pairs `reads_R1.fastq.gz` and `reads_R2.fastq.gz`\n\nAlign you reads against the reference:\n\n```shell\nbowtie2-build genomes.fasta genomes\nbowtie2 -x genomes -1 reads_R1.fastq.gz -2 reads_R2.fastq.gz | \\\nsamtools view -bS | samtools sort -o genomes.bam\nsamtools index genomes.bam\n```\n\nthen build the model:\n\n```shell\niss model -b genomes.bam -o genomes\n```\n\nwhich will create a `genome.npz` file containing your newly built model\n\n## License\n\nCode is under the [MIT](LICENSE) license.\n\n## Issues\n\nFound a bug or have a question? Please open an [issue](https://github.com/HadrienG/InSilicoSeq/issues)\n\n## Contributing\n\nWe welcome contributions from the community! See our [Contributing](CONTRIBUTING.md) guidelines\n\n## Citation\n\nIf you use our software, please cite us!\n\n> Gourl\u00e9 H, Karlsson-Lindsj\u00f6 O, Hayer J and Bongcam+Rudloff E, Simulating Illumina data with InSilicoSeq. _Bioinformatics_ (2018) doi:10.1093/bioinformatics/bty630\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "https://github.com/HadrienG/InSilicoSeq/tarball/1.5.4", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/HadrienG/InSilicoSeq", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "InSilicoSeq", "package_url": "https://pypi.org/project/InSilicoSeq/", "platform": "", "project_url": "https://pypi.org/project/InSilicoSeq/", "project_urls": { "Download": "https://github.com/HadrienG/InSilicoSeq/tarball/1.5.4", "Homepage": "https://github.com/HadrienG/InSilicoSeq" }, "release_url": "https://pypi.org/project/InSilicoSeq/1.5.4/", "requires_dist": [ "numpy", "scipy", "biopython (<=1.78)", "pysam (>=0.15.1)", "future", "joblib", "requests" ], "requires_python": "", "summary": "a sequencing simulator", "version": "1.5.4", "yanked": false, "yanked_reason": null }, "last_serial": 11580075, "releases": { "0.2.1": [ { "comment_text": "", "digests": { "md5": "a0b3e126651885d0f8e7203b72d56c6d", "sha256": "0cf6c1cd88ba717748ad5461d4c825737bb61ad4c16d45e4c52afa4c71fa552f" }, "downloads": -1, "filename": "InSilicoSeq-0.2.1.tar.gz", "has_sig": false, "md5_digest": "a0b3e126651885d0f8e7203b72d56c6d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 281326, "upload_time": "2017-07-15T17:28:02", "upload_time_iso_8601": "2017-07-15T17:28:02.083405Z", "url": "https://files.pythonhosted.org/packages/fd/04/ec1c61e76bbbbec9de8d1938e70b22ca015e85e9dd7fc63fc982e3ef45fe/InSilicoSeq-0.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "7042fe4b37c7dbc573c6c2b6204e4400", "sha256": "d51c49069ac019fb0ca4c5880be9baf752443d935d2a5713bb975d4e58abce39" }, "downloads": -1, "filename": "InSilicoSeq-0.2.2.tar.gz", "has_sig": false, "md5_digest": "7042fe4b37c7dbc573c6c2b6204e4400", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 387526, "upload_time": "2017-07-15T20:45:58", "upload_time_iso_8601": "2017-07-15T20:45:58.734277Z", "url": "https://files.pythonhosted.org/packages/bc/c4/55a9b2a40e6b8bcd1b2a3caba2c8ef095b826ae35774b668835909e2cda3/InSilicoSeq-0.2.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "23edc27ec7f312260505b6df59edc99d", "sha256": "855a59b541f014ca09fcb4baaf1e8a5b66f08d95d3cc00d466ef8aaa7f1fb554" }, "downloads": -1, "filename": "InSilicoSeq-0.3.0.tar.gz", "has_sig": false, "md5_digest": "23edc27ec7f312260505b6df59edc99d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 389202, "upload_time": "2017-07-19T19:41:41", "upload_time_iso_8601": "2017-07-19T19:41:41.090762Z", "url": "https://files.pythonhosted.org/packages/73/a4/bc633f1a236e9706d4f0ead2dc7db15e8097db890e4b9ace6b70e6920099/InSilicoSeq-0.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "9cba38c724e60bb3ac0d274eba8f987f", "sha256": "ac394eb55dce873ec44efd261f4a42da38c16d42893db971742c750173eb2583" }, "downloads": -1, "filename": "InSilicoSeq-0.4.1.tar.gz", "has_sig": false, "md5_digest": "9cba38c724e60bb3ac0d274eba8f987f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 668880, "upload_time": "2017-09-22T05:40:18", "upload_time_iso_8601": "2017-09-22T05:40:18.227190Z", "url": "https://files.pythonhosted.org/packages/ce/d3/07a0d0a062e7e89daa65a7aad1df1fc670996257c7061842ec61a29202a4/InSilicoSeq-0.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "c5f7e83c7488aeb645b47c1b09955648", "sha256": "07630b226ae390d508605388836b205ed1268f77c90bfca79f08d2ba7ce24ddb" }, "downloads": -1, "filename": "InSilicoSeq-0.5.0.tar.gz", "has_sig": false, "md5_digest": "c5f7e83c7488aeb645b47c1b09955648", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 669422, "upload_time": "2017-10-10T12:37:55", "upload_time_iso_8601": "2017-10-10T12:37:55.969614Z", "url": "https://files.pythonhosted.org/packages/81/5e/2fc6483f2bf39c9a6ed58eb8ca4fbe12da75e81d2f3b27daa05f5fb953a9/InSilicoSeq-0.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "fd027848e873917214ec9f0a883c6a9b", "sha256": "0612c4bdde992dbefb8bac26566a067ff3944906f9c48094cc3d1cb1646caca6" }, "downloads": -1, "filename": "InSilicoSeq-0.5.1.tar.gz", "has_sig": false, "md5_digest": "fd027848e873917214ec9f0a883c6a9b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 669438, "upload_time": "2017-10-10T16:08:30", "upload_time_iso_8601": "2017-10-10T16:08:30.673373Z", "url": "https://files.pythonhosted.org/packages/1c/fe/bbc396e6b6d10757f23a0abd41420d0d6b4d9f6dcbe259cc764a95282aaa/InSilicoSeq-0.5.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "e077c70a06cd9e9786133e196fe59230", "sha256": "4e2f09df3f1535205e2976f3ea6cdd26f4bdc2bb3f9d605073bb22bce3e924e9" }, "downloads": -1, "filename": "InSilicoSeq-0.6.0.tar.gz", "has_sig": false, "md5_digest": "e077c70a06cd9e9786133e196fe59230", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 670005, "upload_time": "2017-10-23T10:29:22", "upload_time_iso_8601": "2017-10-23T10:29:22.699005Z", "url": "https://files.pythonhosted.org/packages/c5/ed/942e9c55c04f04808af2ddf8b8a7a3a7835f2dc2329db14e778a62f88851/InSilicoSeq-0.6.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "0fe8edcbc937212caae56e30361f4aae", "sha256": "c6680225b0a3b54f4c8073dc95b5d08277667e1edd03582927d338c1fbb31760" }, "downloads": -1, "filename": "InSilicoSeq-0.7.0.tar.gz", "has_sig": false, "md5_digest": "0fe8edcbc937212caae56e30361f4aae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1458007, "upload_time": "2017-10-27T07:39:24", "upload_time_iso_8601": "2017-10-27T07:39:24.215164Z", "url": "https://files.pythonhosted.org/packages/0e/b4/8ee958c3d7eb735c4d1737224ee769e07ecedf44cd314fcbf35131090030/InSilicoSeq-0.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "fdd8577bdc4ca5cc65792f360fc57b2e", "sha256": "b590f2292ad9a371c19dd9230d51eb0217c22f9ec89446c6122b10f721bbd572" }, "downloads": -1, "filename": "InSilicoSeq-0.8.0.tar.gz", "has_sig": false, "md5_digest": "fdd8577bdc4ca5cc65792f360fc57b2e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1458503, "upload_time": "2017-11-06T13:12:45", "upload_time_iso_8601": "2017-11-06T13:12:45.206218Z", "url": "https://files.pythonhosted.org/packages/f0/e2/917c02fffa14c0919628d078dc3f49a1a639fa12572769606fe0db7e4ffe/InSilicoSeq-0.8.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "7d8f397bb2765238daee828cc523e6bc", "sha256": "a522167e35131fab95b03850235ed911374721ae2eacb29f38d2606272512aac" }, "downloads": -1, "filename": "InSilicoSeq-0.8.1.tar.gz", "has_sig": false, "md5_digest": "7d8f397bb2765238daee828cc523e6bc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1458921, "upload_time": "2017-11-13T14:11:38", "upload_time_iso_8601": "2017-11-13T14:11:38.600770Z", "url": "https://files.pythonhosted.org/packages/fd/6e/d7829f4bda103b3ba33c893e1bbb55e081454732864eb3663a5afe7d29b9/InSilicoSeq-0.8.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "4021bdb08679018473c8daf777ea4f32", "sha256": "6eb0610ea2628300f250fa7795738f6e385eceb06f87328e4b63df957aef0c77" }, "downloads": -1, "filename": "InSilicoSeq-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "4021bdb08679018473c8daf777ea4f32", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1461977, "upload_time": "2017-11-20T09:49:33", "upload_time_iso_8601": "2017-11-20T09:49:33.906504Z", "url": "https://files.pythonhosted.org/packages/c3/42/3fbe4a734ed6eb17e911911dcd367bcb498869754133cc3282d4278c7c2d/InSilicoSeq-1.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e8af9fb75498229ae821d2b56030a070", "sha256": "8ac8ac3dad9ab21ca5757233159f68be9876ccd00a2ce4fdf9ab0a746e0a4afa" }, "downloads": -1, "filename": "InSilicoSeq-1.0.0.tar.gz", "has_sig": false, "md5_digest": "e8af9fb75498229ae821d2b56030a070", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1459290, "upload_time": "2017-11-20T09:49:41", "upload_time_iso_8601": "2017-11-20T09:49:41.266717Z", "url": "https://files.pythonhosted.org/packages/bc/85/58218ee4ec707aea906869ee68cf2894053f3f43cb178907c4ac7a74d1f3/InSilicoSeq-1.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "0f695621aad59ea446aefdd3fec782ab", "sha256": "8dafb424bda74443618f29e95a4823c5d296ce548ed7ca9017b0d32641095df4" }, "downloads": -1, "filename": "InSilicoSeq-1.0.1.tar.gz", "has_sig": false, "md5_digest": "0f695621aad59ea446aefdd3fec782ab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1459525, "upload_time": "2018-02-08T14:35:26", "upload_time_iso_8601": "2018-02-08T14:35:26.738691Z", "url": "https://files.pythonhosted.org/packages/de/82/d448da193a77921264c6f5dc9de579fefcdba8dd5d236c3e11d1a08394e5/InSilicoSeq-1.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "30c1164e967c23333748331036f01ec5", "sha256": "5cf09398a623be61d875b05dc939a566700fede5f5983e3c45bdcb6042ef3935" }, "downloads": -1, "filename": "InSilicoSeq-1.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "30c1164e967c23333748331036f01ec5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1465786, "upload_time": "2018-03-29T13:07:14", "upload_time_iso_8601": "2018-03-29T13:07:14.437818Z", "url": "https://files.pythonhosted.org/packages/d1/76/a9b2c537a84cf746558ce2497e52c6619494a366ab7b027ef0fe55f7c778/InSilicoSeq-1.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c5481be04fe690b920123332b3595553", "sha256": "0ff112c9727c76592df02eb122b42c76f8c538013aea6b5ec87d1e2c09c6a694" }, "downloads": -1, "filename": "InSilicoSeq-1.1.0.tar.gz", "has_sig": false, "md5_digest": "c5481be04fe690b920123332b3595553", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1461589, "upload_time": "2018-03-29T13:07:31", "upload_time_iso_8601": "2018-03-29T13:07:31.039055Z", "url": "https://files.pythonhosted.org/packages/ca/7a/af7eb3e80cee1597b2c88cf4d7fa5a8dab461d72bec44587918ad69110be/InSilicoSeq-1.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "1dcb75704a5eede3d36389c3a21e2ff7", "sha256": "cf79b4b80db2dd55b68110e9e258bc16d1ba9ade7d80cb2f449b96ea15173222" }, "downloads": -1, "filename": "InSilicoSeq-1.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "1dcb75704a5eede3d36389c3a21e2ff7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1466077, "upload_time": "2018-04-18T10:31:28", "upload_time_iso_8601": "2018-04-18T10:31:28.861729Z", "url": "https://files.pythonhosted.org/packages/ac/24/154d72ba1d8f69fa2f1e8ac8a3a8cafb99c3f99ce91c3960dbed5108f531/InSilicoSeq-1.1.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "98185b7f63cc134f40d874943101d834", "sha256": "57600a27ebab95b23ec6927c70e7e6ca127c77c5aff167513b43f0ec47c09266" }, "downloads": -1, "filename": "InSilicoSeq-1.1.1.tar.gz", "has_sig": false, "md5_digest": "98185b7f63cc134f40d874943101d834", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1461900, "upload_time": "2018-04-18T10:31:36", "upload_time_iso_8601": "2018-04-18T10:31:36.897339Z", "url": "https://files.pythonhosted.org/packages/62/ff/464280f0bc1d9471ef6ddf1a91f000bde60576e33c67d986608d248e8c40/InSilicoSeq-1.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "a6549a64876f25bf2c112805da829179", "sha256": "7060e7844ac5270f3b96c24f840a8ead44229114a0108d31ac06c65b9ba30025" }, "downloads": -1, "filename": "InSilicoSeq-1.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "a6549a64876f25bf2c112805da829179", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1466069, "upload_time": "2018-06-02T10:42:25", "upload_time_iso_8601": "2018-06-02T10:42:25.745311Z", "url": "https://files.pythonhosted.org/packages/4a/3b/1a55be95f5a825480582edd45baecb4b79c681a090e584cd4d5b128b5938/InSilicoSeq-1.1.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0946c0a215855d2ab6c2b567bfe3806f", "sha256": "c25f4982858ff6dc038e648a0e67ed270aab803f5114ba1e3c0a28a96af019d7" }, "downloads": -1, "filename": "InSilicoSeq-1.1.2.tar.gz", "has_sig": false, "md5_digest": "0946c0a215855d2ab6c2b567bfe3806f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1461888, "upload_time": "2018-06-02T10:42:47", "upload_time_iso_8601": "2018-06-02T10:42:47.724747Z", "url": "https://files.pythonhosted.org/packages/f8/72/9388dc668da76ae0cbdbe55a0fd1623dd727e58ac3689d66fad1cc3af054/InSilicoSeq-1.1.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "4bd07d9c4317ec1efea8eca79be5f7db", "sha256": "8640ca0c66aab8bde9de3bbb6c447a0055e621054bd943ab466c1b2458064bbc" }, "downloads": -1, "filename": "InSilicoSeq-1.2.0-py2-none-any.whl", "has_sig": false, "md5_digest": "4bd07d9c4317ec1efea8eca79be5f7db", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 1463609, "upload_time": "2018-06-28T08:20:09", "upload_time_iso_8601": "2018-06-28T08:20:09.192842Z", "url": "https://files.pythonhosted.org/packages/e7/48/615e1430d313d80d6ad910e22d6d87699ffa4048e09a19e59aace5e9a5c9/InSilicoSeq-1.2.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6fa81ca3a8151fa45773eadb993ae90a", "sha256": "4a617359926930ba15d7bfd38ed436d8ab8da92d80c7c516329e25c2504826ce" }, "downloads": -1, "filename": "InSilicoSeq-1.2.0.tar.gz", "has_sig": false, "md5_digest": "6fa81ca3a8151fa45773eadb993ae90a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1462119, "upload_time": "2018-06-28T08:20:12", "upload_time_iso_8601": "2018-06-28T08:20:12.780847Z", "url": "https://files.pythonhosted.org/packages/34/b7/57919b6e15e72ae90e9a70d9c808cc28247f75ac390de3a60ddc1b68ecfd/InSilicoSeq-1.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "9e6dcd5f6614a40365617e577e80d818", "sha256": "a198c724f03f8c2db4d6b649040a81273b078af410c8004b4b01317cfcf8f36f" }, "downloads": -1, "filename": "InSilicoSeq-1.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "9e6dcd5f6614a40365617e577e80d818", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1463777, "upload_time": "2018-09-19T11:53:45", "upload_time_iso_8601": "2018-09-19T11:53:45.524732Z", "url": "https://files.pythonhosted.org/packages/8f/c1/904c2836bf0bd0f7457b0335cb22358bc3b1389d533c697dcce888158ffc/InSilicoSeq-1.2.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "838e3584f6fcb82ac19f96520d2aadb9", "sha256": "5680c5c5fdd2c7b4d73f2e6c4e6befdbd9ac5a61b86f4c81a497e0639f8e98aa" }, "downloads": -1, "filename": "InSilicoSeq-1.2.1.tar.gz", "has_sig": false, "md5_digest": "838e3584f6fcb82ac19f96520d2aadb9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1462243, "upload_time": "2018-09-19T11:53:48", "upload_time_iso_8601": "2018-09-19T11:53:48.112310Z", "url": "https://files.pythonhosted.org/packages/e3/53/b772d0331498a488a3638cdaa8345b3fcc8b1dbadbae674a9c80681db6ca/InSilicoSeq-1.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "bf27e6d79eb416e8696f96e7465ef0c7", "sha256": "a919029a45902502b53f26e13557a22e2bbfd7a05a74bba3fab7eedc273bb737" }, "downloads": -1, "filename": "InSilicoSeq-1.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "bf27e6d79eb416e8696f96e7465ef0c7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1465643, "upload_time": "2018-11-15T10:22:05", "upload_time_iso_8601": "2018-11-15T10:22:05.669005Z", "url": "https://files.pythonhosted.org/packages/fa/ae/2bedbd2227d7e9eaa0dc8461a2998c41532a25134c6ff57bb722c34625f2/InSilicoSeq-1.3.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b65614dec380bdd906c2e27336fb3dae", "sha256": "536a584e43cdc8d62187bb48fd63f5acaa0980c1e7c46fd9a85daca28ef2c5cd" }, "downloads": -1, "filename": "InSilicoSeq-1.3.0.tar.gz", "has_sig": false, "md5_digest": "b65614dec380bdd906c2e27336fb3dae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1461487, "upload_time": "2018-11-15T10:22:09", "upload_time_iso_8601": "2018-11-15T10:22:09.759478Z", "url": "https://files.pythonhosted.org/packages/6e/36/df8ba97fd3f8cf2628653145e672b41945acf9aec5ce8834e167b6782345/InSilicoSeq-1.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "d5c39712c474d98cf5cf3346a185fa5a", "sha256": "30e13aa6b15f2c2a956d3d1b1357ba9cffc40339d04b8a35dc5b0beabbd34bb6" }, "downloads": -1, "filename": "InSilicoSeq-1.3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "d5c39712c474d98cf5cf3346a185fa5a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1465688, "upload_time": "2018-11-21T06:13:49", "upload_time_iso_8601": "2018-11-21T06:13:49.795901Z", "url": "https://files.pythonhosted.org/packages/d5/c1/2f3a522e6f1ee1c2120e41f5997521aef01b08eea934b0b074bf99d0599b/InSilicoSeq-1.3.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c2c7b4ede66c5a8b8eac6c04f72c3c87", "sha256": "ab0d78dcee0b44b8e19c6dfa29e9c7e07172976bccefbd2b6e65770e959228cf" }, "downloads": -1, "filename": "InSilicoSeq-1.3.1.tar.gz", "has_sig": false, "md5_digest": "c2c7b4ede66c5a8b8eac6c04f72c3c87", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1461551, "upload_time": "2018-11-21T06:13:54", "upload_time_iso_8601": "2018-11-21T06:13:54.989360Z", "url": "https://files.pythonhosted.org/packages/a6/29/11c6ff8b491658cdcd1731f9c78873c69b0404f744f0176348d110e526bf/InSilicoSeq-1.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "febcb909e4fdef600fc14f1a8f9b1ca1", "sha256": "7ad7f3de084d79f2c5f26c8835c8db2d049a37ccf4b043e01f55225985fae635" }, "downloads": -1, "filename": "InSilicoSeq-1.3.2-py3-none-any.whl", "has_sig": false, "md5_digest": "febcb909e4fdef600fc14f1a8f9b1ca1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1465718, "upload_time": "2018-12-17T17:19:29", "upload_time_iso_8601": "2018-12-17T17:19:29.334408Z", "url": "https://files.pythonhosted.org/packages/f8/0d/67a5ab30b14e6b988c2568e063101b8d776b453ae51cc2222c0fe99c353c/InSilicoSeq-1.3.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f0eeaa145a7dc1bc6c41720edfd3de13", "sha256": "1a4f182799b7de50cc734449ec93e3918e1eaec7b4edb226bd1f9363cc72d40e" }, "downloads": -1, "filename": "InSilicoSeq-1.3.2.tar.gz", "has_sig": false, "md5_digest": "f0eeaa145a7dc1bc6c41720edfd3de13", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1461602, "upload_time": "2018-12-17T17:19:44", "upload_time_iso_8601": "2018-12-17T17:19:44.613507Z", "url": "https://files.pythonhosted.org/packages/4b/ad/14d30f450cf83d2504cef81bbb839443a158f93294bb543d9eb88f72b59f/InSilicoSeq-1.3.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.3": [ { "comment_text": "", "digests": { "md5": "ab7804db469b0e07c1c5d1830222d54c", "sha256": "7efd21293f0dfd650702e88bc5655d8e859a62c83f9b2a1211c2a18af2c4d167" }, "downloads": -1, "filename": "InSilicoSeq-1.3.3-py3-none-any.whl", "has_sig": false, "md5_digest": "ab7804db469b0e07c1c5d1830222d54c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1465727, "upload_time": "2018-12-17T17:54:34", "upload_time_iso_8601": "2018-12-17T17:54:34.253316Z", "url": "https://files.pythonhosted.org/packages/78/10/cb16af1844ca8d5d6a8a7f631244d7b7d0748ed8158c6df3cfafdae6d51a/InSilicoSeq-1.3.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "35567b9f954817b8d0cbe020c2e73326", "sha256": "f3ce92e977ee19d8e53d33865b42b468c684e79a7ddeea74955dfae9a7604778" }, "downloads": -1, "filename": "InSilicoSeq-1.3.3.tar.gz", "has_sig": false, "md5_digest": "35567b9f954817b8d0cbe020c2e73326", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1461618, "upload_time": "2018-12-17T17:54:38", "upload_time_iso_8601": "2018-12-17T17:54:38.120343Z", "url": "https://files.pythonhosted.org/packages/d6/29/1596efe088268cc658166653be85239e0829f1dd47dacdae69e26372cdb4/InSilicoSeq-1.3.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.4": [ { "comment_text": "", "digests": { "md5": "5c1d389581d59c3fdfb32e0fc5f82c7d", "sha256": "3ef73dd95321f22bdcc33c61a3087c3afcacdacfc81bf217bdadc470b968c707" }, "downloads": -1, "filename": "InSilicoSeq-1.3.4-py2-none-any.whl", "has_sig": false, "md5_digest": "5c1d389581d59c3fdfb32e0fc5f82c7d", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 1465779, "upload_time": "2019-04-09T05:40:06", "upload_time_iso_8601": "2019-04-09T05:40:06.616612Z", "url": "https://files.pythonhosted.org/packages/34/df/86e53565409f735b3ccaae8c793e61cfc121d0526e0550a17d4e3549ec02/InSilicoSeq-1.3.4-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7750aa7f651a6e173667ea175820e62b", "sha256": "1cb71fcdebe5a5a61c305f52b55b580fc529d2bc21ef4b0e6d71b1fde5978bfa" }, "downloads": -1, "filename": "InSilicoSeq-1.3.4-py3-none-any.whl", "has_sig": false, "md5_digest": "7750aa7f651a6e173667ea175820e62b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1465778, "upload_time": "2019-04-09T05:41:05", "upload_time_iso_8601": "2019-04-09T05:41:05.262878Z", "url": "https://files.pythonhosted.org/packages/32/be/4e681eb993bb9d46b26feb63e3cebcb34b6625297a1d0b253adf36c1617a/InSilicoSeq-1.3.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "671b9100dcac68c3ac6446581bfc28a7", "sha256": "a8da95d96d0037dbfe0182c2fa499cb823f44ed7e2025a143d331497ca35c1f3" }, "downloads": -1, "filename": "InSilicoSeq-1.3.4.tar.gz", "has_sig": false, "md5_digest": "671b9100dcac68c3ac6446581bfc28a7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1463017, "upload_time": "2019-04-09T05:40:08", "upload_time_iso_8601": "2019-04-09T05:40:08.925687Z", "url": "https://files.pythonhosted.org/packages/c9/be/23c052865fcf60e3d52c2af79ebd0ceac358bd2e299e18fe26bbecb19c43/InSilicoSeq-1.3.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.5": [ { "comment_text": "", "digests": { "md5": "a7ff0f8928294e4d7aa72c51fe21b582", "sha256": "cc942154b4a9087da97846b3647dcb14926c484ec84f6f6ac4ffdbeb529f1b3b" }, "downloads": -1, "filename": "InSilicoSeq-1.3.5-py2-none-any.whl", "has_sig": false, "md5_digest": "a7ff0f8928294e4d7aa72c51fe21b582", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 1465780, "upload_time": "2019-04-09T06:21:49", "upload_time_iso_8601": "2019-04-09T06:21:49.217488Z", "url": "https://files.pythonhosted.org/packages/ca/e3/e442fb445898ed914bc97826a765b6190ce6f88f054380ca1f382ff43bea/InSilicoSeq-1.3.5-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "79e48d24ef5c099b8ec5d88af1da9b88", "sha256": "9b92561f97297a86e571f2922b0264643160fe01bf962a9e3eb9c150c2a10218" }, "downloads": -1, "filename": "InSilicoSeq-1.3.5-py3-none-any.whl", "has_sig": false, "md5_digest": "79e48d24ef5c099b8ec5d88af1da9b88", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1465779, "upload_time": "2019-04-09T06:21:21", "upload_time_iso_8601": "2019-04-09T06:21:21.108672Z", "url": "https://files.pythonhosted.org/packages/a9/c9/b754fc179902381a1127b8977cf040b83f21f52130db3504c0d9b9430340/InSilicoSeq-1.3.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "44316d88c6bd87d8fc5610bf9935558d", "sha256": "eb7103eaec0c0f20b9368e5ef670a7b4202fc60f9365f4ed5e75349fd7e3c7d9" }, "downloads": -1, "filename": "InSilicoSeq-1.3.5.tar.gz", "has_sig": false, "md5_digest": "44316d88c6bd87d8fc5610bf9935558d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1461565, "upload_time": "2019-04-09T06:21:22", "upload_time_iso_8601": "2019-04-09T06:21:22.921739Z", "url": "https://files.pythonhosted.org/packages/28/47/4507eb5670e5b42bb3a3910b5f0814c64e6437687db41ff4a16c49504997/InSilicoSeq-1.3.5.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.6": [ { "comment_text": "", "digests": { "md5": "5f3236c814e38a62fb9dcada6d76cf4a", "sha256": "bd267bb87db74fcb81e3ea27b81928c77cee22fb5f4900c31018a77502596e52" }, "downloads": -1, "filename": "InSilicoSeq-1.3.6-py2-none-any.whl", "has_sig": false, "md5_digest": "5f3236c814e38a62fb9dcada6d76cf4a", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 1465820, "upload_time": "2019-05-14T06:22:04", "upload_time_iso_8601": "2019-05-14T06:22:04.563128Z", "url": "https://files.pythonhosted.org/packages/47/06/5164fd5ee59eaae3f541311641f6412ad2a33d29e57257c8f467ccfb8a5c/InSilicoSeq-1.3.6-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e7799afad96813fe8d2d627c34c1f287", "sha256": "3d5cb46b9293729150ed2733eafe14daefda5d267edf812ce4a93f4a0a399010" }, "downloads": -1, "filename": "InSilicoSeq-1.3.6-py3-none-any.whl", "has_sig": false, "md5_digest": "e7799afad96813fe8d2d627c34c1f287", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1465820, "upload_time": "2019-05-14T06:22:48", "upload_time_iso_8601": "2019-05-14T06:22:48.762117Z", "url": "https://files.pythonhosted.org/packages/ee/0c/417715189397ae2eea1c78b4b3c7da98edba6bf5e8c5627b0039cbf38b0b/InSilicoSeq-1.3.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "42c2983ec294e395c5367b168fc28337", "sha256": "a844e57fe9996980d05850a0375859a2740cfbb3075138814196c7d5935f105c" }, "downloads": -1, "filename": "InSilicoSeq-1.3.6.tar.gz", "has_sig": false, "md5_digest": "42c2983ec294e395c5367b168fc28337", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1463091, "upload_time": "2019-05-14T06:22:06", "upload_time_iso_8601": "2019-05-14T06:22:06.449991Z", "url": "https://files.pythonhosted.org/packages/5b/20/3669733c9705ddbf6bdb404e8727f3deebbc0f795a8c6135b1974b8620b7/InSilicoSeq-1.3.6.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "1a8a8701203bc9caf8446a46d415a481", "sha256": "c59c387875f3c10ce974c8e4e56efa0dbb1fdd5a86b23eb0cfc2c7d4e152b1a2" }, "downloads": -1, "filename": "InSilicoSeq-1.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "1a8a8701203bc9caf8446a46d415a481", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1466810, "upload_time": "2019-05-31T07:41:27", "upload_time_iso_8601": "2019-05-31T07:41:27.212633Z", "url": "https://files.pythonhosted.org/packages/cd/28/e472ba762a874484d7cb6911ecb3c918cfc3f595ecd6ed21fc7d73dfd03e/InSilicoSeq-1.4.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "765fc113a948662cce23c690de4210de", "sha256": "d28db985f2c6171518a7183605586ef9ce0c74e8ac4b159dada40c855b604a3a" }, "downloads": -1, "filename": "InSilicoSeq-1.4.0.tar.gz", "has_sig": false, "md5_digest": "765fc113a948662cce23c690de4210de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1462262, "upload_time": "2019-05-31T07:41:37", "upload_time_iso_8601": "2019-05-31T07:41:37.617982Z", "url": "https://files.pythonhosted.org/packages/cc/72/38ed6213d206ac27eb265304966958aff4b1a9f9af94cf8345d1e9d70d74/InSilicoSeq-1.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "fb861c081ea6838d758064379aaa7a67", "sha256": "d95fc229c79b154441f7fda80643795740769422cefa23654b757e25ca992183" }, "downloads": -1, "filename": "InSilicoSeq-1.4.1-py3-none-any.whl", "has_sig": false, "md5_digest": "fb861c081ea6838d758064379aaa7a67", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1466815, "upload_time": "2019-06-03T07:25:51", "upload_time_iso_8601": "2019-06-03T07:25:51.309975Z", "url": "https://files.pythonhosted.org/packages/5f/70/a82573f849f762717aa80ec4484ceb8968993c98b915527e1e7e32f0a799/InSilicoSeq-1.4.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3d06ccad1b6fbfdbb00e81250f5951d5", "sha256": "2039fa1bd62cc1cf8d344a6a114a3c7551744b1b25fe7479a5b7fa9933eed2a1" }, "downloads": -1, "filename": "InSilicoSeq-1.4.1.tar.gz", "has_sig": false, "md5_digest": "3d06ccad1b6fbfdbb00e81250f5951d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1465073, "upload_time": "2019-06-03T07:25:53", "upload_time_iso_8601": "2019-06-03T07:25:53.515636Z", "url": "https://files.pythonhosted.org/packages/41/4b/229494679d648c8944a85f3a316e82c61b6d3ad9f08f758dcc0fc9c8098a/InSilicoSeq-1.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "48c87548baf60049459066aba9849052", "sha256": "8ab4534273722c19ff0f93886f97aad6591e81cf8d22f1de2f53f7ced991d4ff" }, "downloads": -1, "filename": "InSilicoSeq-1.4.2-py3-none-any.whl", "has_sig": false, "md5_digest": "48c87548baf60049459066aba9849052", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1466817, "upload_time": "2019-06-06T14:49:02", "upload_time_iso_8601": "2019-06-06T14:49:02.748786Z", "url": "https://files.pythonhosted.org/packages/ec/24/e987fba1af6d00c146418e27195789e755194f4fdb6001b094084c4bd709/InSilicoSeq-1.4.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2bf6fdcf509a7496c5c96c6862cd1040", "sha256": "55eb7fbf63ca256472d13fa1f0333d7a14d90cc598a574a7ab49830c76362309" }, "downloads": -1, "filename": "InSilicoSeq-1.4.2.tar.gz", "has_sig": false, "md5_digest": "2bf6fdcf509a7496c5c96c6862cd1040", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1465068, "upload_time": "2019-06-06T14:49:04", "upload_time_iso_8601": "2019-06-06T14:49:04.849631Z", "url": "https://files.pythonhosted.org/packages/ab/73/c93732ed2ec721fadfee52d10331afbeb482620d9039080c4efc20a0d5fc/InSilicoSeq-1.4.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.3": [ { "comment_text": "", "digests": { "md5": "32b92e78d58e55490d71057e01895b70", "sha256": "ac5347bc51f6dc1809bde807ca4e0af403f45de37e550d42170c59636509e240" }, "downloads": -1, "filename": "InSilicoSeq-1.4.3-py3-none-any.whl", "has_sig": false, "md5_digest": "32b92e78d58e55490d71057e01895b70", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1466817, "upload_time": "2019-09-04T11:08:04", "upload_time_iso_8601": "2019-09-04T11:08:04.595727Z", "url": "https://files.pythonhosted.org/packages/33/d6/5be059b7058b9ed52220182df7492df93eefb608d2da59217a1e6eb321ad/InSilicoSeq-1.4.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ab3bbc66c3d636560f169846d3b4f305", "sha256": "ee5c55e9e45627ce2df8c1db12e7642a93fd7c1465121a07cbb4bce6814526f8" }, "downloads": -1, "filename": "InSilicoSeq-1.4.3.tar.gz", "has_sig": false, "md5_digest": "ab3bbc66c3d636560f169846d3b4f305", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1462273, "upload_time": "2019-09-04T11:08:07", "upload_time_iso_8601": "2019-09-04T11:08:07.445446Z", "url": "https://files.pythonhosted.org/packages/88/4d/c020e3507abd1fabe26ed649e0f63a3903dfc89873fee65dd6f138ba6f46/InSilicoSeq-1.4.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.4": [ { "comment_text": "", "digests": { "md5": "fcdaff114bd22baf3b580032f9b76629", "sha256": "eb18931d50d4f1824023fa24e2e4975ae7a329022901072b612322236a31ef09" }, "downloads": -1, "filename": "InSilicoSeq-1.4.4-py3-none-any.whl", "has_sig": false, "md5_digest": "fcdaff114bd22baf3b580032f9b76629", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1467517, "upload_time": "2019-10-23T07:40:25", "upload_time_iso_8601": "2019-10-23T07:40:25.139957Z", "url": "https://files.pythonhosted.org/packages/e4/21/5bf904dcc65d70c1ccd44ad4ee5f6393c0d9bb7d8a72306dc38066e3a29c/InSilicoSeq-1.4.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a48a3ddefca4854817bcb7544ec6b991", "sha256": "2c867ad5d5a549ed788d19d8a03a8ca918f3a820d9c70d43059575c1cf40cc57" }, "downloads": -1, "filename": "InSilicoSeq-1.4.4.tar.gz", "has_sig": false, "md5_digest": "a48a3ddefca4854817bcb7544ec6b991", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1462865, "upload_time": "2019-10-23T07:40:30", "upload_time_iso_8601": "2019-10-23T07:40:30.505620Z", "url": "https://files.pythonhosted.org/packages/f4/ce/230641acb5aac9cfb0f1b79e99e0379d5db9870989e59b64d693fb238f8f/InSilicoSeq-1.4.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.5": [ { "comment_text": "", "digests": { "md5": "fac80688624bfcc1833d92fe6f05afed", "sha256": "a5295403714659b92cde6eb308d4072ee67d5fbaaef17a21e8f6547bac4dd26e" }, "downloads": -1, "filename": "InSilicoSeq-1.4.5-py3-none-any.whl", "has_sig": false, "md5_digest": "fac80688624bfcc1833d92fe6f05afed", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1467595, "upload_time": "2019-11-22T16:41:54", "upload_time_iso_8601": "2019-11-22T16:41:54.024422Z", "url": "https://files.pythonhosted.org/packages/58/e3/efd3640e9a12c692bf140ccb124aa58ed450b4e7e3ba2ca07cfa3ad718e1/InSilicoSeq-1.4.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0fbd1c1ea8ea07566b3bd6a43ce7938d", "sha256": "bf48c42bbf718e6cec8ee3081e6bd5e51de6a17e412977cb46698d7f0b34f34f" }, "downloads": -1, "filename": "InSilicoSeq-1.4.5.tar.gz", "has_sig": false, "md5_digest": "0fbd1c1ea8ea07566b3bd6a43ce7938d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1462920, "upload_time": "2019-11-22T16:41:58", "upload_time_iso_8601": "2019-11-22T16:41:58.733250Z", "url": "https://files.pythonhosted.org/packages/37/22/f28a0d07f03e19cf82e6d7726891a4c43294e6490741f15ba15955faa3db/InSilicoSeq-1.4.5.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.6": [ { "comment_text": "", "digests": { "md5": "df391915524292c0907e10631ce112a2", "sha256": "7a1481047aa82d8b93137d1c253afbb1a5db33538cfd0b2a3d9b422280116e25" }, "downloads": -1, "filename": "InSilicoSeq-1.4.6-py3-none-any.whl", "has_sig": false, "md5_digest": "df391915524292c0907e10631ce112a2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1467885, "upload_time": "2020-05-12T08:23:39", "upload_time_iso_8601": "2020-05-12T08:23:39.133820Z", "url": "https://files.pythonhosted.org/packages/5e/b9/b24f98e1150e0a1f498d032c765d5f7d4e45701831d65d9925897ad853a9/InSilicoSeq-1.4.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "075ab6e45f5677872e95e5295a61d824", "sha256": "67c3d8a631b06eaea114af7596802141af91599b4de3b118dcd6a1ce2476b39a" }, "downloads": -1, "filename": "InSilicoSeq-1.4.6.tar.gz", "has_sig": false, "md5_digest": "075ab6e45f5677872e95e5295a61d824", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1463172, "upload_time": "2020-05-12T08:23:56", "upload_time_iso_8601": "2020-05-12T08:23:56.656536Z", "url": "https://files.pythonhosted.org/packages/8c/6d/f9e3e6d6bc9c9f4ab6bce4f49ffe31467c5f5cd54b1b0f920f37603d5607/InSilicoSeq-1.4.6.tar.gz", "yanked": false, "yanked_reason": null } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "20046e2a6f741c32ed019f8ac03dd2fe", "sha256": "30ec67b9718826f3d0e28a65077803d1e7ace03f462f5b5f27d850546870897c" }, "downloads": -1, "filename": "InSilicoSeq-1.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "20046e2a6f741c32ed019f8ac03dd2fe", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1468127, "upload_time": "2020-08-13T07:05:42", "upload_time_iso_8601": "2020-08-13T07:05:42.416907Z", "url": "https://files.pythonhosted.org/packages/3b/47/9710172527214bacf8fb85e12f97cc73eb45a1132cd8636d566e3cb2480e/InSilicoSeq-1.5.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3e96f5a198212bd12445aaa2ad5685e9", "sha256": "492ab0a43e9947155c494417e8ba6ff2fb928e59201bbc593904fa3e9581f0e3" }, "downloads": -1, "filename": "InSilicoSeq-1.5.0.tar.gz", "has_sig": false, "md5_digest": "3e96f5a198212bd12445aaa2ad5685e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1464188, "upload_time": "2020-08-13T07:05:47", "upload_time_iso_8601": "2020-08-13T07:05:47.231435Z", "url": "https://files.pythonhosted.org/packages/cf/3f/57343bbd44b007ff28f0e8fa47ce4e57feb61f8085ccf4b729a038e3afdd/InSilicoSeq-1.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "3d2fa4976d63a3c67d353052f1277395", "sha256": "dd2c7dc9f6ed99e55afc91fcdda8c7a8818b6bfef085bb6124e0e82168e1fb01" }, "downloads": -1, "filename": "InSilicoSeq-1.5.1-py3-none-any.whl", "has_sig": false, "md5_digest": "3d2fa4976d63a3c67d353052f1277395", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1468089, "upload_time": "2020-10-10T06:48:05", "upload_time_iso_8601": "2020-10-10T06:48:05.902312Z", "url": "https://files.pythonhosted.org/packages/a0/47/36056de0930fa84e5c13b0fadc1d593bd43f06e5ba59da11607d6ca6e499/InSilicoSeq-1.5.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "056a9f5f6e5f4fc4bf0adee62f8a6550", "sha256": "7a4cdb374894c1fc5372a783e9017f11e34f8fa935c32a2a47bed1b6e6551f94" }, "downloads": -1, "filename": "InSilicoSeq-1.5.1.tar.gz", "has_sig": false, "md5_digest": "056a9f5f6e5f4fc4bf0adee62f8a6550", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1464141, "upload_time": "2020-10-10T06:48:07", "upload_time_iso_8601": "2020-10-10T06:48:07.551480Z", "url": "https://files.pythonhosted.org/packages/ea/13/bca9a764211889ceb8eaa45174770cf5db7b36129e102f20d0606fdc5f5c/InSilicoSeq-1.5.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.5.2": [ { "comment_text": "", "digests": { "md5": "772d14765bcaa67f651850f29effa4d3", "sha256": "e2446d49f3ab1f92fa2320319b9c78573755727ef748a59bd3eae2620b45487e" }, "downloads": -1, "filename": "InSilicoSeq-1.5.2-py3-none-any.whl", "has_sig": false, "md5_digest": "772d14765bcaa67f651850f29effa4d3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1468222, "upload_time": "2021-02-01T12:05:03", "upload_time_iso_8601": "2021-02-01T12:05:03.364276Z", "url": "https://files.pythonhosted.org/packages/f4/e2/42082c086c9a9a41ee58040458726dc8613ccb1503eb131e57bd8e65f5f5/InSilicoSeq-1.5.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f6a17363a50dee0f669ceca6b3af591b", "sha256": "8baa7a069c5904155b2fc872c9ede0d5bb9b3c99bed7c101e6c45112dcd87b73" }, "downloads": -1, "filename": "InSilicoSeq-1.5.2.tar.gz", "has_sig": false, "md5_digest": "f6a17363a50dee0f669ceca6b3af591b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1464265, "upload_time": "2021-02-01T12:05:05", "upload_time_iso_8601": "2021-02-01T12:05:05.827526Z", "url": "https://files.pythonhosted.org/packages/08/16/e9fcf8b30364f0e0d1af10aef020781dfaa7c23a51c0290fdf1c14997a6d/InSilicoSeq-1.5.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.5.3": [ { "comment_text": "", "digests": { "md5": "9fe3abb4d2970240d7226bffbbf4631e", "sha256": "9324351656c848f9ed0ee24f95a5a7a31d7035a77964c3f258d1af344975f077" }, "downloads": -1, "filename": "InSilicoSeq-1.5.3-py3-none-any.whl", "has_sig": false, "md5_digest": "9fe3abb4d2970240d7226bffbbf4631e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1468238, "upload_time": "2021-05-05T08:52:21", "upload_time_iso_8601": "2021-05-05T08:52:21.452137Z", "url": "https://files.pythonhosted.org/packages/eb/4c/62cdae05e2bfa60c373cb0cac809f5690593f9b937e9468695cc816a1f24/InSilicoSeq-1.5.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3f93b86f1f96bf50978e2ac778c4c282", "sha256": "1ae94c19d98f291c2d1e914fa8ccbf7bef051812d964476dea6726675e5f7628" }, "downloads": -1, "filename": "InSilicoSeq-1.5.3.tar.gz", "has_sig": false, "md5_digest": "3f93b86f1f96bf50978e2ac778c4c282", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1464328, "upload_time": "2021-05-05T08:52:24", "upload_time_iso_8601": "2021-05-05T08:52:24.246784Z", "url": "https://files.pythonhosted.org/packages/e9/64/5aeed93b6c56372e9d6e57168b57de7285213b338a6a890de33d5e1f19b4/InSilicoSeq-1.5.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.5.4": [ { "comment_text": "", "digests": { "md5": "701f0bfea988ddb3f257120e6e893ea2", "sha256": "dff664bdd7cc7a739c6481278ebf3a9cf87163283750abc9828dfa122c2c8740" }, "downloads": -1, "filename": "InSilicoSeq-1.5.4-py3-none-any.whl", "has_sig": false, "md5_digest": "701f0bfea988ddb3f257120e6e893ea2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1468246, "upload_time": "2021-09-29T09:00:21", "upload_time_iso_8601": "2021-09-29T09:00:21.308092Z", "url": "https://files.pythonhosted.org/packages/7f/e6/f081aea4c8b6e3ce7ce2cd5d57dd2f4f0112841fc3f05c627228c876ab85/InSilicoSeq-1.5.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7e9a2f1f8304910d73ec711e9d7ba1b7", "sha256": "5f639006cbda7681b4947e89717a823fe5d5ded737ab9be08300b4813b99a086" }, "downloads": -1, "filename": "InSilicoSeq-1.5.4.tar.gz", "has_sig": false, "md5_digest": "7e9a2f1f8304910d73ec711e9d7ba1b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1464330, "upload_time": "2021-09-29T09:00:29", "upload_time_iso_8601": "2021-09-29T09:00:29.807454Z", "url": "https://files.pythonhosted.org/packages/cf/35/9af5b2e15e00a76bf1f24a55474665d323ffe7182ccf568eeae6b4ee496d/InSilicoSeq-1.5.4.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "701f0bfea988ddb3f257120e6e893ea2", "sha256": "dff664bdd7cc7a739c6481278ebf3a9cf87163283750abc9828dfa122c2c8740" }, "downloads": -1, "filename": "InSilicoSeq-1.5.4-py3-none-any.whl", "has_sig": false, "md5_digest": "701f0bfea988ddb3f257120e6e893ea2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 1468246, "upload_time": "2021-09-29T09:00:21", "upload_time_iso_8601": "2021-09-29T09:00:21.308092Z", "url": "https://files.pythonhosted.org/packages/7f/e6/f081aea4c8b6e3ce7ce2cd5d57dd2f4f0112841fc3f05c627228c876ab85/InSilicoSeq-1.5.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7e9a2f1f8304910d73ec711e9d7ba1b7", "sha256": "5f639006cbda7681b4947e89717a823fe5d5ded737ab9be08300b4813b99a086" }, "downloads": -1, "filename": "InSilicoSeq-1.5.4.tar.gz", "has_sig": false, "md5_digest": "7e9a2f1f8304910d73ec711e9d7ba1b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1464330, "upload_time": "2021-09-29T09:00:29", "upload_time_iso_8601": "2021-09-29T09:00:29.807454Z", "url": "https://files.pythonhosted.org/packages/cf/35/9af5b2e15e00a76bf1f24a55474665d323ffe7182ccf568eeae6b4ee496d/InSilicoSeq-1.5.4.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }