{ "info": { "author": "Romain Guerillot, Torsten Seemann, Mark B Schultz", "author_email": "romain.guerillot@hotmail.fr", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Intended Audience :: Science/Research", "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)", "Programming Language :: Python :: 3.5", "Topic :: Scientific/Engineering :: Bio-Informatics", "Topic :: Scientific/Engineering :: Medical Science Apps." ], "description": "RM-seq: Resistance Mutation SEQuencing\n======================================\n\nAnalysis bioinformatic pipeline for high-throughput assessment of\nresistance mutations. RM-seq is an amplicon-based, deep-sequencing\ntechnique using single molecule barcoding. We have adapted this method\nto identify and characterise antibiotic resistance mutation.\n\nThe complete description of the RM-seq workflow is available\n`here `__\n\nIs this the right tool for me?\n------------------------------\n\n1. To be able to us this pipeline you need to have sequenced amplicon\n library with molecular barcodes.\n2. It only supports paired-end FASTQ reads (including .gz compressed\n fastq files).\n3. It needs paired reads that are overlapping.\n4. It needs a reference fasta sequences of the sequenced gene (DNA\n sequence).\n5. It's written in Python3 and Perl.\n\nInstallation\n------------\n\nInstall RM-seq pipeline\n~~~~~~~~~~~~~~~~~~~~~~~\n\n::\n\n pip3 install rmseq\n\nDependencies\n~~~~~~~~~~~~\n\nRM-seq has the following package dependencies: \\* EMBOSS >= 6.6 for\n``clustalo``, ``cons``, ``getorf``, ``diffseq`` \\* clustal-omega >=\n1.2.1 \\* bwa >= 0.7.15 \\* samtools >= 1.3 \\* bedtools >= 2.26.0 \\* pear\n>= 0.9.10 \\* cd-hit >= 4.7 \\* trimmomatic >= 0.36 \\* seqtk >= 1.3-r106\n(only if you subsample reads) \\* python modules: ``plumbum``,\n``Biopython``\n\nIf you are using the `OSX Brew `__ or\n`LinuxBrew `__ packaging system:\n\n::\n\n brew tap homebrew/science\n brew tap tseemann/bioinformatics-linux\n brew install parallel; parallel --citation # please write will cite\n brew install bedtools\n brew install EMBOSS\n brew install clustal-omega\n brew install bwa\n brew install samtools\n brew install pear\n brew install cd-hit\n brew install trimmomatic\n brew install seqtk\n pip3 install plumbum\n pip3 install biopython\n\nQuick start\n-----------\n\nDo\n\n::\n\n rmseq\n\nHelp\n~~~~\n\n::\n\n usage: rmseq [-h] ...\n\n Run RM-seq pipeline.\n\n optional arguments:\n -h, --help show this help message and exit\n\n Commands:\n\n run Run the pipeline.\n version Print version.\n check Check pipeline dependencies\n test Run the test data set.\n\nTo check dependencies are installed\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n::\n\n rmseq check\n\nTo run the test dataset\n~~~~~~~~~~~~~~~~~~~~~~~\n\n::\n\n rmseq test\n\nTo run analysis pipeline, follow the steps in\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n::\n\n rmseq run -h\n usage: rmseq run [options]\n\n Run the pipeline\n\n positional arguments:\n R1 Path to read pair 1\n R2 Path to read pair 2\n refnuc Reference sequence that will be used for premapping\n filtering and mutation annotation (fasta).\n outdir Output directory.\n\n optional arguments:\n -h, --help show this help message and exit\n -d, --debug_on Switch on debug mode.\n -f, --force Force overwite of existing.\n -b BARLEN, --barlen BARLEN\n Length of barcode (default 16)\n -m MINFREQ, --minfreq MINFREQ\n Minimum barcode frequency to keep (default 5)\n -q BASEQUAL, --basequal BASEQUAL\n Minimum base quality threshold used for trimming the\n end of reads (trimmomatic TRAILING argument) (default\n 30)\n -c CPUS, --cpus CPUS Number of CPUs to use (default 72)\n -t TRANSLATION, --translation TRANSLATION\n Manually set the reading frame for translation (use 1,\n 2 or 3 - use getorf by default)\n -r MINSIZE, --minsize MINSIZE\n Minimum ORF size in bp used when annotating variants\n (default 200)\n -w WSIZE, --wsize WSIZE\n Word-size option to pass to diffseq for comparison\n with reference sequence (default 5)\n -s SUBSAMPLE, --subsample SUBSAMPLE\n Only examine this many reads.\n -k, --keepfiles Keep the intermediate files (default remove)\n -n, --noaln Skip reads alignment when generating consensus (to use\n for indel quantification only) (default align)\n\nTo check the version\n~~~~~~~~~~~~~~~~~~~~\n\n::\n\n rmseq version\n\nOutputs\n-------\n\nRM-seq produces a tap-separated output file called amplicons.effect\nwhere each raw correspond to a consensus amplicon (a genetic variant in\nthe sequenced population):\n\n+----------------------+-------------------------+-----------------------------------------------------------------------------------------+\n| Column | Example | Description |\n+======================+=========================+=========================================================================================+\n| barcode | GACACAACTGAGATTA | sequence of the barcode |\n+----------------------+-------------------------+-----------------------------------------------------------------------------------------+\n| sample | Rifampicin1 | output folder name |\n+----------------------+-------------------------+-----------------------------------------------------------------------------------------+\n| prot\\_mutation | H481N | annotation of the amino acid change (Histidine residue 481 substituted by Asparagine) |\n+----------------------+-------------------------+-----------------------------------------------------------------------------------------+\n| prot\\_start | 481 | start coordinate of the mutation |\n+----------------------+-------------------------+-----------------------------------------------------------------------------------------+\n| prot\\_end | 481 | end coordinate of the mutation |\n+----------------------+-------------------------+-----------------------------------------------------------------------------------------+\n| nuc\\_mutation | C1443G | annotation of the nucleotide change |\n+----------------------+-------------------------+-----------------------------------------------------------------------------------------+\n| nuc\\_start | 1443 | start coordinate of the nucleotide change |\n+----------------------+-------------------------+-----------------------------------------------------------------------------------------+\n| nuc\\_end | 1443 | end coordinate of the nucleotide change |\n+----------------------+-------------------------+-----------------------------------------------------------------------------------------+\n| prot | VRPPDKNNRFVGLYCTLV... | protein sequence of the consensus sequence |\n+----------------------+-------------------------+-----------------------------------------------------------------------------------------+\n| dna | GGTTAGACCACCCGATAA... | dna sequence of the consensus sequence |\n+----------------------+-------------------------+-----------------------------------------------------------------------------------------+\n| reference\\_barcode | CTGACACGTCCTGAAG | barcode of the identical consesnsus amplicon used for annotation |\n+----------------------+-------------------------+-----------------------------------------------------------------------------------------+\n\nThe other files produced by RM-seq are:\n\n+-----------------------+---------------------------------------------------------------------------------------------------------------+\n| File name | Description |\n+=======================+===============================================================================================================+\n| amplicons.barcodes | Table with the count of each barcode sequence |\n+-----------------------+---------------------------------------------------------------------------------------------------------------+\n| amplicons.fna | Multifasta file containing all the consensus nucleotide sequence (header of sequence is the barcode) |\n+-----------------------+---------------------------------------------------------------------------------------------------------------+\n| amplicons.faa | Multifasta file containing all the consensus protein sequence (header of sequence is the barcode) |\n+-----------------------+---------------------------------------------------------------------------------------------------------------+\n| amplicons.fna.cdhit | Multifasta file containing all the unique consensus nucleotide sequence (header of sequence is the barcode) |\n+-----------------------+---------------------------------------------------------------------------------------------------------------+\n| amplicons.faa.cdhit | Multifasta file containing all the unique consensus amino acid sequence (header of sequence is the barcode) |\n+-----------------------+---------------------------------------------------------------------------------------------------------------+\n\nIssues\n------\n\nPlease report problems to the `Issues\nPage `__.\n\nAuthors\n-------\n\nRomain Guerillot (github: rguerillot) \\| Torsten Seemann (github:\ntseemann) \\| Mark B Schultz (github: schultzm)\n\nCitation\n--------\n\nIf you use this tool please cite: `Gu\u00e9rillot R et al. Comprehensive\nantibiotic-linked mutation assessment by Resistance Mutation Sequencing\n(RM-seq). 2018.\ndoi:10.1101/257915. `__\n", "description_content_type": "", "docs_url": null, "download_url": "https://github.com/rguerillot/RM-seq/zipball/master", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "", "keywords": "resistance", "license": "AGPL-3.0", "maintainer": "", "maintainer_email": "", "name": "rmseq", "package_url": "https://pypi.org/project/rmseq/", "platform": "", "project_url": "https://pypi.org/project/rmseq/", "project_urls": { "Download": "https://github.com/rguerillot/RM-seq/zipball/master" }, "release_url": "https://pypi.org/project/rmseq/0.0.57/", "requires_dist": null, "requires_python": "", "summary": "RM-seq is a bioinformatics tool for for assessing resistance mutations from PE short-reads.", "version": "0.0.57" }, "last_serial": 4701771, "releases": { "0.0.10b0": [ { "comment_text": "", "digests": { "md5": "b1a9c1550ede58fefd996006c0bbf1b7", "sha256": "882a3fbac42da4c2281f0a88a136081c21fea9c7e6f280b7f04388eddd5cd0b6" }, "downloads": -1, "filename": "rmseq-0.0.10b0.tar.gz", "has_sig": false, "md5_digest": "b1a9c1550ede58fefd996006c0bbf1b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9095, "upload_time": "2017-09-28T07:03:22", "url": "https://files.pythonhosted.org/packages/c0/06/d209bf4cb1111d7d501b58125bad58c2f3aad8d3699525ab0c642ff43db3/rmseq-0.0.10b0.tar.gz" } ], "0.0.12b0": [ { "comment_text": "", "digests": { "md5": "c139fc72e9ce8234074269b39aa853e7", "sha256": "b043e594e8c7bbf1f6f0c7323226da5d7a5ca2e498ff0bd5753eda433c039e36" }, "downloads": -1, "filename": "rmseq-0.0.12b0.tar.gz", "has_sig": false, "md5_digest": "c139fc72e9ce8234074269b39aa853e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9125, "upload_time": "2017-09-28T07:12:06", "url": "https://files.pythonhosted.org/packages/11/74/c8f13ba51f509d2606d4ab77828fc59e08e5ef9ef3234f3a1c9d49c1fe54/rmseq-0.0.12b0.tar.gz" } ], "0.0.13b0": [ { "comment_text": "", "digests": { "md5": "6478816a6c93ed7032b929d7a06a38bc", "sha256": "cc83d39bfccf73f90a3746fe4e51921007a46349cb6942d7b47728c5bb3d5bff" }, "downloads": -1, "filename": "rmseq-0.0.13b0.tar.gz", "has_sig": false, "md5_digest": "6478816a6c93ed7032b929d7a06a38bc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11778, "upload_time": "2017-09-28T07:16:54", "url": "https://files.pythonhosted.org/packages/30/ce/885bb2ae0102e3183ab924473d219c4a940a37baa6bd816eec12830a9d97/rmseq-0.0.13b0.tar.gz" } ], "0.0.14b0": [ { "comment_text": "", "digests": { "md5": "e26a9f05954e1ff48d23bc019bc098c8", "sha256": "bb6efb3052508b2e96ad0668441d079b67897b29b345120890d498ab94412248" }, "downloads": -1, "filename": "rmseq-0.0.14b0.tar.gz", "has_sig": false, "md5_digest": "e26a9f05954e1ff48d23bc019bc098c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11791, "upload_time": "2017-09-28T07:20:56", "url": "https://files.pythonhosted.org/packages/bb/69/917057adbc3918885905d0ad8d500016e65728a4ce0c4cdb01e54f66d0fb/rmseq-0.0.14b0.tar.gz" } ], "0.0.15b0": [ { "comment_text": "", "digests": { "md5": "0461d394338079fdbf85433b5e9c2e17", "sha256": "ff5997c2679a880b63592a9a769f881b6d322445b1ed341b5aae84cec09b3243" }, "downloads": -1, "filename": "rmseq-0.0.15b0.tar.gz", "has_sig": false, "md5_digest": "0461d394338079fdbf85433b5e9c2e17", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3917810, "upload_time": "2017-09-28T07:25:00", "url": "https://files.pythonhosted.org/packages/b8/59/89b9105e1f825217162a6c09d1d2c8313ab2e6c5e299dbe8320d166d5988/rmseq-0.0.15b0.tar.gz" } ], "0.0.16b0": [ { "comment_text": "", "digests": { "md5": "5fe0918d0343a86f0aa456713ec474ae", "sha256": "4c0876a9650f6e9339d16406a6ceb2242fb56bb368fd5a9b05a2280b7b228b69" }, "downloads": -1, "filename": "rmseq-0.0.16b0.tar.gz", "has_sig": false, "md5_digest": "5fe0918d0343a86f0aa456713ec474ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3917811, "upload_time": "2017-09-28T07:31:24", "url": "https://files.pythonhosted.org/packages/af/65/bf72357eb827e1ef8163ea403dbc4c821a758da8a9af6235a8950c185400/rmseq-0.0.16b0.tar.gz" } ], "0.0.17b0": [ { "comment_text": "", "digests": { "md5": "a01054591fe74eaab6892a01602880ae", "sha256": "be6fc7fa1cafcffc138e5e39a37b972d0e7129a20c9623fcb7a330e8286cc017" }, "downloads": -1, "filename": "rmseq-0.0.17b0.tar.gz", "has_sig": false, "md5_digest": "a01054591fe74eaab6892a01602880ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3917808, "upload_time": "2017-09-28T07:33:50", "url": "https://files.pythonhosted.org/packages/4b/fb/47f56196af2c0a14a7f5f4612f72707b0f9664aa5c522bc64c87f074fde8/rmseq-0.0.17b0.tar.gz" } ], "0.0.18b0": [ { "comment_text": "", "digests": { "md5": "5dcb8f3cf42820896b4f165ac9e02425", "sha256": "015b47b3dcbb367a8dadf745eaf5075d79fc6df3a6e64f74a1db217e5f0d76eb" }, "downloads": -1, "filename": "rmseq-0.0.18b0.tar.gz", "has_sig": false, "md5_digest": "5dcb8f3cf42820896b4f165ac9e02425", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3917891, "upload_time": "2017-09-28T07:45:25", "url": "https://files.pythonhosted.org/packages/6c/7d/dae035b44c06803c0da01601909f9344345863d34d9ec8fef96416ac6d7c/rmseq-0.0.18b0.tar.gz" } ], "0.0.19b0": [ { "comment_text": "", "digests": { "md5": "7f693519c8d63d3d7090c21be637ec6e", "sha256": "c30cd535b1ca8b20cfd1811ea2538f3d5608150abd917ed41840dd62c69d6f03" }, "downloads": -1, "filename": "rmseq-0.0.19b0.tar.gz", "has_sig": false, "md5_digest": "7f693519c8d63d3d7090c21be637ec6e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3917886, "upload_time": "2017-09-28T07:47:25", "url": "https://files.pythonhosted.org/packages/c7/03/80b73bfc02dba432cf019bda2557b0cb015ab6eb9d7480602c7bb6c72bd4/rmseq-0.0.19b0.tar.gz" } ], "0.0.1b0": [ { "comment_text": "", "digests": { "md5": "a55d2ee7c71c7d4eafa238d13b61879b", "sha256": "f53db817ae1c91e3099afa5059eeb3d43c7841ae857137e150e265792021a8e3" }, "downloads": -1, "filename": "rmseq-0.0.1b0.tar.gz", "has_sig": false, "md5_digest": "a55d2ee7c71c7d4eafa238d13b61879b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6350, "upload_time": "2017-09-27T07:04:47", "url": "https://files.pythonhosted.org/packages/09/d2/d06b8b5f409489d8dfcc22383e55a10007d941da2dd4c7332c371330c8c6/rmseq-0.0.1b0.tar.gz" } ], "0.0.20b0": [ { "comment_text": "", "digests": { "md5": "f4397ab13572fda1a600b270a67f1397", "sha256": "59973f4ff36688be5c37ef75cb3d5a9a6b5928f07928c0c28cb08683fda87a40" }, "downloads": -1, "filename": "rmseq-0.0.20b0.tar.gz", "has_sig": false, "md5_digest": "f4397ab13572fda1a600b270a67f1397", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3917874, "upload_time": "2017-09-28T07:49:01", "url": "https://files.pythonhosted.org/packages/f9/2b/f99f12f299c9a28550f72adf55d401a28368918e4ff40db47319c44e1bc3/rmseq-0.0.20b0.tar.gz" } ], "0.0.21b0": [ { "comment_text": "", "digests": { "md5": "8584b899b9651f8f7f65d4aa463c16f6", "sha256": "1522a49c573433a9f66893610dfd48ed0f77adbe96768c47fc2a6ff196258d69" }, "downloads": -1, "filename": "rmseq-0.0.21b0.tar.gz", "has_sig": false, "md5_digest": "8584b899b9651f8f7f65d4aa463c16f6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11868, "upload_time": "2017-09-28T07:54:10", "url": "https://files.pythonhosted.org/packages/fd/da/675af9127d1604ff1602310af6828e6c9ab8be4d7df886ad338a656f003a/rmseq-0.0.21b0.tar.gz" } ], "0.0.22b0": [ { "comment_text": "", "digests": { "md5": "1b220eff372b3f17a1c79bc98d630c22", "sha256": "702424d7f26c9d506a47072ff5a8fb1ae002b0447058392e466518bdc595fc9b" }, "downloads": -1, "filename": "rmseq-0.0.22b0.tar.gz", "has_sig": false, "md5_digest": "1b220eff372b3f17a1c79bc98d630c22", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3917909, "upload_time": "2017-10-02T07:03:08", "url": "https://files.pythonhosted.org/packages/b9/bf/b202e2cadec11eaed896797beb101b3a5af18836dcbade831a2a4b314af0/rmseq-0.0.22b0.tar.gz" } ], "0.0.23b0": [ { "comment_text": "", "digests": { "md5": "c5cdc7584bbdc65ecf83e3aeb4a8c2bf", "sha256": "7909df7153391f8b819ec34dc562f21702eec74710d7a4102a658b6498fe6d2f" }, "downloads": -1, "filename": "rmseq-0.0.23b0.tar.gz", "has_sig": false, "md5_digest": "c5cdc7584bbdc65ecf83e3aeb4a8c2bf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3918670, "upload_time": "2017-10-02T07:06:10", "url": "https://files.pythonhosted.org/packages/35/26/497828d06c062d49ef448538a1dcc744928c681e654728b1542ff3408838/rmseq-0.0.23b0.tar.gz" } ], "0.0.24b0": [ { "comment_text": "", "digests": { "md5": "bb2bee0c70e925e06eaf93edfc95da9f", "sha256": "0d6e03b74b259d5c9737c3b14ab80e475cd0dead523e54bbbc771b7af645b1d0" }, "downloads": -1, "filename": "rmseq-0.0.24b0.tar.gz", "has_sig": false, "md5_digest": "bb2bee0c70e925e06eaf93edfc95da9f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3918688, "upload_time": "2017-10-02T07:11:24", "url": "https://files.pythonhosted.org/packages/5f/8d/4ad88dba354af274c9f8979bbeecf9e68a03b3eab9e2198c4527b2db0e0e/rmseq-0.0.24b0.tar.gz" } ], "0.0.25b0": [ { "comment_text": "", "digests": { "md5": "963b6a56a4b6b621794307c2cf96a8d6", "sha256": "8f70c56af3973aede4bb9e603424ff30541c4d0051df65d55d741ad250c47709" }, "downloads": -1, "filename": "rmseq-0.0.25b0.tar.gz", "has_sig": false, "md5_digest": "963b6a56a4b6b621794307c2cf96a8d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3918689, "upload_time": "2017-10-02T07:12:05", "url": "https://files.pythonhosted.org/packages/36/b2/babe3f19cc2ecd2d68fade183e0cf679d2f7e0cbde71dc7a68147b3a561f/rmseq-0.0.25b0.tar.gz" } ], "0.0.26b0": [ { "comment_text": "", "digests": { "md5": "3fd286d3cc26d37502adf716c6c93ac0", "sha256": "8ee700dbd2022f70e04c1d53e6596604bb600823e696d54a58d88785eeee35df" }, "downloads": -1, "filename": "rmseq-0.0.26b0.tar.gz", "has_sig": false, "md5_digest": "3fd286d3cc26d37502adf716c6c93ac0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3918742, "upload_time": "2017-10-02T07:19:58", "url": "https://files.pythonhosted.org/packages/22/be/f81bba4b59defbc4cacd7684550cbb1a0c109773289af57d9259a386e194/rmseq-0.0.26b0.tar.gz" } ], "0.0.27b0": [ { "comment_text": "", "digests": { "md5": "834173f31236db77b3d90756724865b3", "sha256": "762e8527cb9f4f0043a4e191e8430abb11e0097ba7a97f52c48c2982ea5bba8b" }, "downloads": -1, "filename": "rmseq-0.0.27b0.tar.gz", "has_sig": false, "md5_digest": "834173f31236db77b3d90756724865b3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3918750, "upload_time": "2017-10-02T07:22:46", "url": "https://files.pythonhosted.org/packages/0b/de/55db0ce70a22b43fc454295a2f42d0e292d7916c0ad64706050c8fcd4cfc/rmseq-0.0.27b0.tar.gz" } ], "0.0.28b0": [ { "comment_text": "", "digests": { "md5": "5561687b3d26ce9c76a713d4f2d3d003", "sha256": "0c1bdbb70f376588ab92f90944362a51dbb38ef252ada82f09da9af85aa6ce06" }, "downloads": -1, "filename": "rmseq-0.0.28b0.tar.gz", "has_sig": false, "md5_digest": "5561687b3d26ce9c76a713d4f2d3d003", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3918755, "upload_time": "2017-10-02T07:24:44", "url": "https://files.pythonhosted.org/packages/e6/fd/6fa50ed52db88e5896d15cec6dd8d93456994cbd75d4568664ac6c1b5e78/rmseq-0.0.28b0.tar.gz" } ], "0.0.2b0": [ { "comment_text": "", "digests": { "md5": "b6cadb5d5711abf97211adda39de5c5c", "sha256": "f58bcba91b496296fa17041c306b734d113b1ef6b6f2a3686f98269763e00cc4" }, "downloads": -1, "filename": "rmseq-0.0.2b0.tar.gz", "has_sig": false, "md5_digest": "b6cadb5d5711abf97211adda39de5c5c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6351, "upload_time": "2017-09-27T07:12:03", "url": "https://files.pythonhosted.org/packages/b8/fc/354969138c2b578d73af15cd1bc0edcb73893b227881ea09b77774beef31/rmseq-0.0.2b0.tar.gz" } ], "0.0.3b0": [ { "comment_text": "", "digests": { "md5": "0495e9257200a2ed1d1be9e62a9307be", "sha256": "faf05a004d1056de3214ed43b3a6ab5d7e8c307009a73649709e7b8148d7953e" }, "downloads": -1, "filename": "rmseq-0.0.3b0.tar.gz", "has_sig": false, "md5_digest": "0495e9257200a2ed1d1be9e62a9307be", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6024, "upload_time": "2017-09-28T01:06:03", "url": "https://files.pythonhosted.org/packages/75/bc/0c276256e8a442d781ec874da07bb39f5a2a004b0647974eba8583c392dd/rmseq-0.0.3b0.tar.gz" } ], "0.0.41b0": [ { "comment_text": "", "digests": { "md5": "5588e6529b306f9b88c5cdb068594288", "sha256": "bfa577013096db56544873c71abd9c5d9a0944eaa9b19c4676810b811d39d55d" }, "downloads": -1, "filename": "rmseq-0.0.41b0.tar.gz", "has_sig": false, "md5_digest": "5588e6529b306f9b88c5cdb068594288", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3920252, "upload_time": "2017-10-03T03:08:05", "url": "https://files.pythonhosted.org/packages/28/8e/d7c9fcdb364303f3c7edeb4cf7f9b84bffe04efa91348ae5d7aac3f5bfc4/rmseq-0.0.41b0.tar.gz" } ], "0.0.42b0": [ { "comment_text": "", "digests": { "md5": "bae917ca3ad622c5e61193c903da8c12", "sha256": "58ea7b612448ed055778c785c77d81e4281f4c5d0472d385a09c053210065a99" }, "downloads": -1, "filename": "rmseq-0.0.42b0.tar.gz", "has_sig": false, "md5_digest": "bae917ca3ad622c5e61193c903da8c12", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3920259, "upload_time": "2017-10-03T03:20:33", "url": "https://files.pythonhosted.org/packages/7b/b2/57f4f46b260406fbac63920cd4c84d657e1d58327f05880d5390783718cc/rmseq-0.0.42b0.tar.gz" } ], "0.0.43b0": [ { "comment_text": "", "digests": { "md5": "f3f17c5429e5180c5a1405cafa78e0cd", "sha256": "018965ec9a567e33ee06a026c88bd7ba3bfb2de0d55cc109b19e52492501a4f8" }, "downloads": -1, "filename": "rmseq-0.0.43b0.tar.gz", "has_sig": false, "md5_digest": "f3f17c5429e5180c5a1405cafa78e0cd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3920256, "upload_time": "2017-10-03T03:32:04", "url": "https://files.pythonhosted.org/packages/ab/07/54d74f19f51a14594bd71d3cab964371d6583743480c53ade110463320af/rmseq-0.0.43b0.tar.gz" } ], "0.0.45b0": [ { "comment_text": "", "digests": { "md5": "92e69e3cfe4bb65b241dcf0d5b90e53f", "sha256": "4de8c0a532c794363971f638655253135130824e5e59b5750948f63f3cd2c090" }, "downloads": -1, "filename": "rmseq-0.0.45b0.tar.gz", "has_sig": false, "md5_digest": "92e69e3cfe4bb65b241dcf0d5b90e53f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3920255, "upload_time": "2017-10-03T03:35:55", "url": "https://files.pythonhosted.org/packages/a9/2d/1edf2785a51dbc7160cd3ce40d7095bbb56617e6438c315a82bdb44a894a/rmseq-0.0.45b0.tar.gz" } ], "0.0.46b0": [ { "comment_text": "", "digests": { "md5": "a9a566aa79ce7da3168437352ba31979", "sha256": "4b7a2ffc0b872beb2d78638bcacc57c36893d005bd447ab78fca766fc8de2558" }, "downloads": -1, "filename": "rmseq-0.0.46b0.tar.gz", "has_sig": false, "md5_digest": "a9a566aa79ce7da3168437352ba31979", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3918571, "upload_time": "2017-10-04T14:48:12", "url": "https://files.pythonhosted.org/packages/a0/94/60c320e0c8d8e69f9f4dc6bef449b89ada5f30f96909c226ba26e84ebf1c/rmseq-0.0.46b0.tar.gz" } ], "0.0.47b0": [ { "comment_text": "", "digests": { "md5": "43077e4ae8d2d424d924669e1656ac67", "sha256": "7b3ba2bdba87c8ad40f3b386c1751033910a0dbc75d1f912cca24826698e4c0b" }, "downloads": -1, "filename": "rmseq-0.0.47b0.tar.gz", "has_sig": false, "md5_digest": "43077e4ae8d2d424d924669e1656ac67", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3918571, "upload_time": "2017-10-04T22:54:01", "url": "https://files.pythonhosted.org/packages/22/40/32f24c8d00488de485e32046691e35a04d1372e5d480b5d0573e3d2e8d34/rmseq-0.0.47b0.tar.gz" } ], "0.0.51b0": [ { "comment_text": "", "digests": { "md5": "8ec1ad6a2ace26eb5934a01992c503c1", "sha256": "4d0dc20d954759168f52b5e156f24db032f8b081c2f34f2f3987cebd947c40dc" }, "downloads": -1, "filename": "rmseq-0.0.51b0.tar.gz", "has_sig": false, "md5_digest": "8ec1ad6a2ace26eb5934a01992c503c1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3918928, "upload_time": "2017-11-30T07:16:08", "url": "https://files.pythonhosted.org/packages/48/10/ef7da23b0a18480ddc19815a55c2943b16a623534a47431c84128a183260/rmseq-0.0.51b0.tar.gz" } ], "0.0.53b0": [ { "comment_text": "", "digests": { "md5": "5e8f3ed8277cc891888477a1a803eed0", "sha256": "48eddef2c3df21c83ce1dd1011e3c8fd17a7db0469ac0c9f0177d391c4e089b3" }, "downloads": -1, "filename": "rmseq-0.0.53b0.tar.gz", "has_sig": false, "md5_digest": "5e8f3ed8277cc891888477a1a803eed0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3923149, "upload_time": "2018-09-18T11:56:35", "url": "https://files.pythonhosted.org/packages/db/dc/f69ae6b8c1ff9aaadae36e9a249e39580c47921682d97de15f764c092a8e/rmseq-0.0.53b0.tar.gz" } ], "0.0.56": [ { "comment_text": "", "digests": { "md5": "60d4107d18188ba1e7a7509fbcee77b5", "sha256": "d94d240b6f78fffd03717293f0214e967fb8558020df856f7f56f4d2639f2287" }, "downloads": -1, "filename": "rmseq-0.0.56.tar.gz", "has_sig": false, "md5_digest": "60d4107d18188ba1e7a7509fbcee77b5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3922993, "upload_time": "2018-09-18T12:18:18", "url": "https://files.pythonhosted.org/packages/4e/1f/cd6347cc1509d0afb01c4112795be7af45c9fd4cd09ffee4d5b5da2447cf/rmseq-0.0.56.tar.gz" } ], "0.0.57": [ { "comment_text": "", "digests": { "md5": "b57e8cdb28a54aab0a3b0ba7c814d79c", "sha256": "c07f557dd5c43213abff689345b3c813c48007778b83a3937a72abe00ebc2af1" }, "downloads": -1, "filename": "rmseq-0.0.57.tar.gz", "has_sig": false, "md5_digest": "b57e8cdb28a54aab0a3b0ba7c814d79c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3923293, "upload_time": "2019-01-16T06:06:36", "url": "https://files.pythonhosted.org/packages/76/ec/be520abc091c8c7b34bd110d99ff79febaaae37eb182b5b9b23fb4bf5efd/rmseq-0.0.57.tar.gz" } ], "0.0.5b0": [ { "comment_text": "", "digests": { "md5": "ac3cb6af2facf9d1caed51750f4db6fc", "sha256": "8d306acb9795dde1684ef07b1df31acce792457569aa68d3d6264549916c8244" }, "downloads": -1, "filename": "rmseq-0.0.5b0.tar.gz", "has_sig": false, "md5_digest": "ac3cb6af2facf9d1caed51750f4db6fc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6228, "upload_time": "2017-09-28T01:22:57", "url": "https://files.pythonhosted.org/packages/cb/ef/e9988fd9e2f2064f71b3baff15dac7bf67fdda90f9f119bda943d9e9b03f/rmseq-0.0.5b0.tar.gz" } ], "0.0.6b0": [ { "comment_text": "", "digests": { "md5": "9fbf37eb00d7912acc1577ae8719fb26", "sha256": "87fefe9c8f214011c3b00a717fee2983b302247a68234cf7591ca412d9d8debe" }, "downloads": -1, "filename": "rmseq-0.0.6b0.tar.gz", "has_sig": false, "md5_digest": "9fbf37eb00d7912acc1577ae8719fb26", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6339, "upload_time": "2017-09-28T01:26:37", "url": "https://files.pythonhosted.org/packages/ca/8c/a50585d534fe0144de1cf2958eca2ff0496b80a42a368288e236b96b3fb0/rmseq-0.0.6b0.tar.gz" } ], "0.0.8b0": [ { "comment_text": "", "digests": { "md5": "0ed0f9fdeb3a9d570b8ccab93f95751f", "sha256": "df3d86e087e376310f68a644410d43d1e3b2688107e3e6d8094b43dba6ace165" }, "downloads": -1, "filename": "rmseq-0.0.8b0.tar.gz", "has_sig": false, "md5_digest": "0ed0f9fdeb3a9d570b8ccab93f95751f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9097, "upload_time": "2017-09-28T06:56:27", "url": "https://files.pythonhosted.org/packages/3e/b6/ddd7249c73c6cffd02423b158ff857d44a3c3773f60af918ee43216adf5c/rmseq-0.0.8b0.tar.gz" } ], "0.0.9b0": [ { "comment_text": "", "digests": { "md5": "c758c6ac7eb13bc903583f87ef980e09", "sha256": "1bc0f732c93807d54974081dcb069dca08f55e77c0f62daf7857a50329a45fb8" }, "downloads": -1, "filename": "rmseq-0.0.9b0.tar.gz", "has_sig": false, "md5_digest": "c758c6ac7eb13bc903583f87ef980e09", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9102, "upload_time": "2017-09-28T06:58:17", "url": "https://files.pythonhosted.org/packages/b0/c2/5666a782d589b7541761e9d1b41d29d40ceb9c61ac125669a7e95bfb0913/rmseq-0.0.9b0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "b57e8cdb28a54aab0a3b0ba7c814d79c", "sha256": "c07f557dd5c43213abff689345b3c813c48007778b83a3937a72abe00ebc2af1" }, "downloads": -1, "filename": "rmseq-0.0.57.tar.gz", "has_sig": false, "md5_digest": "b57e8cdb28a54aab0a3b0ba7c814d79c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3923293, "upload_time": "2019-01-16T06:06:36", "url": "https://files.pythonhosted.org/packages/76/ec/be520abc091c8c7b34bd110d99ff79febaaae37eb182b5b9b23fb4bf5efd/rmseq-0.0.57.tar.gz" } ] }