{ "info": { "author": "Adam R. Rivers, Kyle C. Weber", "author_email": "adam.rivers@ars.usda.gov, kweber1@ufl.edu", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Scientific/Engineering :: Bio-Informatics" ], "description": "Q2_ITSxpress: A Qiime2 plugin to rapidly trim the Internally transcribed spacer (ITS) region of FASTQ files\n===========================================================================================================\n.. image:: https://travis-ci.org/USDA-ARS-GBRU/q2_itsxpress.svg?branch=master\n :target: https://travis-ci.org/USDA-ARS-GBRU/q2_itsxpress\n\n.. image:: https://codecov.io/gh/USDA-ARS-GBRU/q2_itsxpress/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/USDA-ARS-GBRU/q2_itsxpress\n\n.. image:: https://api.codacy.com/project/badge/Grade/4d00341b4abc4e04a77cf5ca6674cd3c\n :target: https://www.codacy.com/app/USDA-ARS-GBRU/q2_itsxpress?utm_source=github.com&utm_medium=referral&utm_content=USDA-ARS-GBRU/q2_itsxpress&utm_campaign=Badge_Grade\n\n.. image:: https://zenodo.org/badge/138209572.svg\n :target: https://zenodo.org/badge/latestdoi/138209572\n\n\nAuthors\n-------\n* Adam R. Rivers, US Department of Agriculture, Agricultural Research Service\n* Kyle C. Weber, US Department of Agriculture, Agricultural Research Service\n\nCitation\n--------\nRivers AR, Weber KC, Gardner TG et al. ITSxpress: Software to rapidly trim\ninternally transcribed spacer sequences with quality scores for marker gene\nanalysis. F1000Research 2018, 7:1418. doi: `10.12688/f1000research.15704.1`_\n\n.. _`10.12688/f1000research.15704.1`: https://doi.org/10.12688/f1000research.15704.1\n\nIntroduction\n------------\n\nThe internally transcribed spacer (ITS) is a region between the small subunit\nand large subunit rRNA genes. In is a commonly used phylogenetic marker for\nFungi and other Eukaryotes. The ITS contains the 5.8s gene and two variable\nlength spacer regions. In amplicon sequencing studies it is common practice to\ntrim off the conserved (SSU, 5,8S or LSU) regions. Bengtsson-Palme et al. (2013)\npublished a software package ITSx_ to do this.\n\nQ2_ITSxpress extends this work by rapidly trimming FASTQ sequences within\nQiime2. Q2_ITSxpress is the Qiime2 plugin version of the stand alone command\nline utility ITSxpress_. Q2_ITSxpress is designed to support the calling of\nexact sequence variants rather than OTUs. This newer method of sequence\nerror-correction requires quality score data from each sequence, so each input\nsequence must be trimmed. ITSxpress makes this possible by taking FASTQ data,\nde-replicating the sequences then identifying the start and stop sites using\nHMMSearch. Results are parsed and the trimmed files are returned. The ITS1,\nITS2 or the entire ITS region including the 5.8s rRNA gene can be selected.\nITSxpress uses the hmm models from ITSx so results are nearly identical.\n\n\nRequirements/Dependencies\n-------------------------\n\n* Qiime2 is required to run Q2-itsxpress (for stand alone software see ITSxpress_)\n* To install Qiime2 follow these instructions: https://docs.qiime2.org/2018.8/install/\n\nQ2_itsxpress Installation\n-------------------------\n\n1. Activate the Qiime2 conda environment\n\n.. code-block:: bash\n\n source activate qiime2-2018.8\n\n2. Install Q2_itsxpress using BioConda_. Be sure to install Q2_itsxpres in the Qiime2 environment.\n\n.. code-block:: bash\n\n conda install -c bioconda itsxpress\n pip install q2-itsxpress\n\n3. In your Qiime2 environment, refresh the plugins.\n\n.. code-block:: bash\n\n qiime dev refresh-cache\n\n4. Check to see if the ITSxpress plugin is installed. You should see an output similar to the image below.\n\n.. code-block:: bash\n\n qiime itsxpress\n\n.. image:: ../../screenshot.png\n\nUsage\n-----\n\nWithin Qiime2 you can trim paired-end or single-end reads using these commands\n\n.. code-block:: bash\n\n qiime itsxpress trim-pair\n\n qiime itsxpress trim-pair-output-unmerged\n\n qiime itsxpress trim-single\n\n1. qiime itsxpress trim-single\n\n This command takes single-end data and returns trimmed reads. The sequence may\n have been merged previously or have been generated from a long read technology\n like PacBio. Merged and long reads trimmed by this function can be used by\n Deblur but only long reads (not merged reads) trimmed by this function should\n be passed to Dada2. Its statistical model for estimating error rates was not\n designed for pre-merged reads.\n\n+----------------------------------+---------------------------------------------------------------------------------------+\n| Command-requirement | Description |\n+----------------------------------+---------------------------------------------------------------------------------------+\n| --i-per-sample-sequences | - The artifact that contains the sequence file(s). |\n+ \t\t\t + - Either Joined Paired or just a single fastq. +\n| | - One file sequence in the qza data folder. |\n+----------------------------------+---------------------------------------------------------------------------------------+\n| --p-region | - The regions ITS2, ITS1, and ALL. |\n+----------------------------------+---------------------------------------------------------------------------------------+\n|\t\t\t\t | -\tSelect the taxonomic group sequenced: A, B, C, D, E, F, G, H, I, L, M, O, P,\t |\n+\t--p-taxa\t\t +\tQ, R, S, T, U, V, ALL.\t\t\t\t\t\t\t\t +\n| \t\t\t\t |\t\t\t\t\t\t\t\t\t\t\t |\n+----------------------------------+---------------------------------------------------------------------------------------+\n| --p-threads \t | - The amount of threads to use. |\n+----------------------------------+---------------------------------------------------------------------------------------+\n| --o-trimmed | - The resulting trimmed sequences from ITSxpress in a qza format. |\n+----------------------------------+---------------------------------------------------------------------------------------+\n| --cluster-id | - The percent identity for clustering reads, set to 1 for exact dereplication. |\n+----------------------------------+---------------------------------------------------------------------------------------+\n\n\n2. qiime itsxpress trim-pair\n\n This command takes paired-end data and returns merged, trimmed reads. The\n merged reads trimmed by this function can be used by Deblur but not\n Dada2. Its statistical model for estimating error rates was not\n designed for pre-merged reads, instead use `qiime itsxpress trim-pair-output-unmerged`.\n\n+----------------------------------+---------------------------------------------------------------------------------------+\n| Command-requirement | Description |\n+----------------------------------+---------------------------------------------------------------------------------------+\n| --i-per-sample-sequences | - The artifact that contains the sequence file(s). |\n+ \t\t\t + - Either Joined Paired or just a single fastq. +\n| | - One file sequence in the qza data folder. |\n+----------------------------------+---------------------------------------------------------------------------------------+\n| --p-region | - The regions ITS2, ITS1, and ALL. |\n+----------------------------------+---------------------------------------------------------------------------------------+\n|\t\t\t\t | -\tSelect the taxonomic group sequenced: A, B, C, D, E, F, G, H, I, L, M, O, P,\t |\n+\t--p-taxa\t\t +\tQ, R, S, T, U, V, ALL.\t\t\t\t\t\t\t\t +\n| \t\t\t\t |\t\t\t\t\t\t\t\t\t\t\t |\n+----------------------------------+---------------------------------------------------------------------------------------+\n| --p-threads \t | - The amount of threads to use. |\n+----------------------------------+---------------------------------------------------------------------------------------+\n| --o-trimmed | - The resulting trimmed sequences from ITSxpress in a qza format. |\n+----------------------------------+---------------------------------------------------------------------------------------+\n| --cluster-id | - The percent identity for clustering reads, set to 1 for exact dereplication. |\n+----------------------------------+---------------------------------------------------------------------------------------+\n\n3. qiime itsxpress trim-pair-output-unmerged\n\n This command takes paired-end data and returns unmerged, trimmed reads. The\n merged reads trimmed by this function can be used by Dada2 but not Deblur.\n For Deblur use `qiime itsxpress trim-pair`.\n\n+----------------------------------+---------------------------------------------------------------------------------------+\n| Command-requirement | Description |\n+----------------------------------+---------------------------------------------------------------------------------------+\n| --i-per-sample-sequences | - The artifact that contains the sequence file. |\n+ \t\t\t + - Only paired will work. +\n| | - Two file sequences in the qza data folder. |\n+----------------------------------+---------------------------------------------------------------------------------------+\n| --p-region | - The regions ITS2, ITS1, and ALL. |\n+----------------------------------+---------------------------------------------------------------------------------------+\n|\t\t\t\t | -\tSelect the taxonomic group sequenced: A, B, C, D, E, F, G, H, I, L, M, O, P,\t |\n+\t--p-taxa\t\t +\tQ, R, S, T, U, V, ALL.\t\t\t\t\t\t\t\t +\n| \t\t\t\t |\t\t\t\t\t\t\t\t\t\t\t |\n+----------------------------------+---------------------------------------------------------------------------------------+\n| --p-threads \t | - The amount of threads to use. |\n+----------------------------------+---------------------------------------------------------------------------------------+\n| --o-trimmed | - The resulting trimmed sequences from ITSxpress in a qza format. |\n+----------------------------------+---------------------------------------------------------------------------------------+\n| --cluster-id | - The percent identity for clustering reads, set to 1 for exact dereplication. |\n+----------------------------------+---------------------------------------------------------------------------------------+\n\nTaxa Key\n--------\n\n+-+-------------------------------------+\n|A| Alveolata\t\t\t\t|\n+-+-------------------------------------+\n|B| Bryophyta\t\t\t\t|\n+-+-------------------------------------+\n|C| Bacillariophyta\t\t\t|\n+-+-------------------------------------+\n|D| Amoebozoa\t\t\t\t|\n+-+-------------------------------------+\n|E| Euglenozoa\t\t\t\t|\n+-+-------------------------------------+\n|F| Fungi\t\t\t\t|\n+-+-------------------------------------+\n|G| Chlorophyta (green algae)\t\t|\n+-+-------------------------------------+\n|H| Rhodophyta (red algae)\t\t|\n+-+-------------------------------------+\n|I| Phaeophyceae (brown algae)\t\t|\n+-+-------------------------------------+\n|L| Marchantiophyta (liverworts)\t|\n+-+-------------------------------------+\n|M| Metazoa\t\t\t\t|\n+-+-------------------------------------+\n|O| Oomycota\t\t\t\t|\n+-+-------------------------------------+\n|P| Haptophyceae (prymnesiophytes)\t|\n+-+-------------------------------------+\n|Q| Raphidophyceae\t\t\t|\n+-+-------------------------------------+\n|R| Rhizaria\t\t\t\t|\n+-+-------------------------------------+\n|S| Synurophyceae\t\t\t|\n+-+-------------------------------------+\n|T| Tracheophyta (higher plants)\t|\n+-+-------------------------------------+\n|U| Eustigmatophyceae\t\t\t|\n+-+-+-----------------------------------+\n|ALL| All\t\t\t\t|\n+---+-----------------------------------+\n\n\n\nExample\n-------\n\nUse case: Trimming the ITS2 region from a fungal amplicon\nsequencing dataset with a PairedSequencesWithQuailty qza using two cpu threads.\nThe example file used is in the Tests folder under paired.qza.\n\n.. code:: bash\n\n qiime itsxpress trim-pair --i-per-sample-sequences ~/parired.qza --p-region ITS2 \\\n --p-taxa F --p-threads 2 --o-trimmed ~/Desktop/out.qza\n\nLicense information\n-------------------\n\nThis software is a work of the United States Department of Agriculture,\nAgricultural Research Service and is released under a Creative Commons CC0\npublic domain attribution.\n\n.. _ITSxpress: https://github.com/USDA-ARS-GBRU/itsxpress\n.. _ITSx: http://microbiology.se/software/itsx/\n.. _BioConda: https://bioconda.github.io/\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/usda-ars-gbru/q2_itsxpress", "keywords": "Amplicon sequencing fungal ITS QIIME2", "license": "License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", "maintainer": "", "maintainer_email": "", "name": "q2-itsxpress", "package_url": "https://pypi.org/project/q2-itsxpress/", "platform": "", "project_url": "https://pypi.org/project/q2-itsxpress/", "project_urls": { "Homepage": "https://github.com/usda-ars-gbru/q2_itsxpress" }, "release_url": "https://pypi.org/project/q2-itsxpress/1.7.4/", "requires_dist": [ "itsxpress (>=1.7.2)", "qiime2", "pandas" ], "requires_python": ">3.5", "summary": "A QIIME2 plugin to trim ITS regions using ITSxpress", "version": "1.7.4" }, "last_serial": 5401951, "releases": { "1.3": [ { "comment_text": "", "digests": { "md5": "e2b53474f526a6637de11f9d63744e22", "sha256": "3b9928f0d91a719acf3084f10c874b6bef2c550ac43aaff16a7a1ea388a63fb0" }, "downloads": -1, "filename": "q2_itsxpress-1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "e2b53474f526a6637de11f9d63744e22", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 7386, "upload_time": "2018-06-29T13:48:08", "url": "https://files.pythonhosted.org/packages/a6/c1/8859a5a81e9909d3ca5eddeb020c230e5e48b2b96d9ee9f8c7fbbba8e57e/q2_itsxpress-1.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ad9593221aae1e2fd276b9d70b2c03ea", "sha256": "4509dfd023fd8b48e88ca0447f2ad16dddecfff7286db7154ada6c270b03159d" }, "downloads": -1, "filename": "q2_itsxpress-1.3.tar.gz", "has_sig": false, "md5_digest": "ad9593221aae1e2fd276b9d70b2c03ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7906, "upload_time": "2018-06-29T13:48:10", "url": "https://files.pythonhosted.org/packages/c5/09/bd689ae4f6899f683f4b85aa5d02dd613320ebd77b15f744b0fe9b918919/q2_itsxpress-1.3.tar.gz" } ], "1.4": [ { "comment_text": "", "digests": { "md5": "a2512d499c2a5fea24a726a23e8bc7a0", "sha256": "175ef8b5b480c7c747be0c75fc94c63e7c02af1eea3d580a97acba90d83c5611" }, "downloads": -1, "filename": "q2_itsxpress-1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "a2512d499c2a5fea24a726a23e8bc7a0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 7386, "upload_time": "2018-06-29T13:48:09", "url": "https://files.pythonhosted.org/packages/b4/ea/4ea0decabadda11319e08178d45358241697ae70748266c1c9d8595bc518/q2_itsxpress-1.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "05ba222ec79b63d9cfeb3cfb24abb719", "sha256": "e32d926f99aea881efab3535908af1f77d0902b00815f4f52f67941f1dce60fd" }, "downloads": -1, "filename": "q2_itsxpress-1.4.tar.gz", "has_sig": false, "md5_digest": "05ba222ec79b63d9cfeb3cfb24abb719", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7908, "upload_time": "2018-06-29T13:48:11", "url": "https://files.pythonhosted.org/packages/c0/af/ba2f350204f4d4d3519b4836f1215ed26cc34804c8e30e0f30cca3fbcb1b/q2_itsxpress-1.4.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "c7a881325aa5ca1b23fb81977160464c", "sha256": "39b4c3e16fd2385a39a1413bb8098c2d5bcee26cefb408d573665e036cdebeab" }, "downloads": -1, "filename": "q2_itsxpress-1.4.1-py3-none-any.whl", "has_sig": false, "md5_digest": "c7a881325aa5ca1b23fb81977160464c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">3.5", "size": 7598, "upload_time": "2018-07-03T16:27:59", "url": "https://files.pythonhosted.org/packages/4b/56/be528f89b0643bca881c7b4faf091e734e11307cd3f933f2da6846205d0a/q2_itsxpress-1.4.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ce76b4dd6c68a8e70a149a41f8601407", "sha256": "f974a0c6e88cde4c064cc1d12e1567d4222df0af651eae748db23fe954d3b1db" }, "downloads": -1, "filename": "q2_itsxpress-1.4.1.tar.gz", "has_sig": false, "md5_digest": "ce76b4dd6c68a8e70a149a41f8601407", "packagetype": "sdist", "python_version": "source", "requires_python": ">3.5", "size": 8156, "upload_time": "2018-07-03T16:28:00", "url": "https://files.pythonhosted.org/packages/0e/6c/c27bc88f0fa55a73601310089fa1936033bf7a23ed02e78c709e7b5c10cb/q2_itsxpress-1.4.1.tar.gz" } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "8639cd1cb03603dbec2e53377a862a36", "sha256": "f30489aa4f134a05abca4bb0550b4431749a35242d837ff3f6274a35fd28240d" }, "downloads": -1, "filename": "q2_itsxpress-1.4.2-py3-none-any.whl", "has_sig": false, "md5_digest": "8639cd1cb03603dbec2e53377a862a36", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">3.5", "size": 9704, "upload_time": "2018-07-06T21:03:40", "url": "https://files.pythonhosted.org/packages/f6/c8/b088290e74606fe7210ba41de280ef20fddfa289f7e13220860e1d96784b/q2_itsxpress-1.4.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0d62aa88dc2ec26ce4f6c5e499773773", "sha256": "e13369c75278843200ad09cb43a0f143fda8042683870ad1e3b5db0a82411bda" }, "downloads": -1, "filename": "q2_itsxpress-1.4.2.tar.gz", "has_sig": false, "md5_digest": "0d62aa88dc2ec26ce4f6c5e499773773", "packagetype": "sdist", "python_version": "source", "requires_python": ">3.5", "size": 313737, "upload_time": "2018-07-06T21:03:42", "url": "https://files.pythonhosted.org/packages/19/bd/fc0c7ff19f3d2af5ec66a93ac50141037847dd34e29d22c5091c6b49dfb3/q2_itsxpress-1.4.2.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "def3a786007dfc79cf0f97afd60a6cbb", "sha256": "b652dacac1dfa84e88a334b77e057dcd9890f8994a0d5478f8cefde2685369b9" }, "downloads": -1, "filename": "q2_itsxpress-1.6.0-py3-none-any.whl", "has_sig": false, "md5_digest": "def3a786007dfc79cf0f97afd60a6cbb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">3.5", "size": 10037, "upload_time": "2018-07-13T19:52:44", "url": "https://files.pythonhosted.org/packages/9d/bc/b8a21d8f8c719f71639b9b98aae6f48a2c95ade05d308a8ddc3e4f8dd9ba/q2_itsxpress-1.6.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4dcba2226401d581eb5fef31911c9178", "sha256": "fd54b9c610a201184dbe394623ed924d1a34c30f498ef3970b1bdfd1a17bbccd" }, "downloads": -1, "filename": "q2_itsxpress-1.6.0.tar.gz", "has_sig": false, "md5_digest": "4dcba2226401d581eb5fef31911c9178", "packagetype": "sdist", "python_version": "source", "requires_python": ">3.5", "size": 312127, "upload_time": "2018-07-13T19:52:45", "url": "https://files.pythonhosted.org/packages/14/de/3161afe921e334aab5d9cce0531caa0ca7b05eb17665ee7d35b47f511c6f/q2_itsxpress-1.6.0.tar.gz" } ], "1.6.1": [ { "comment_text": "", "digests": { "md5": "070dad349845fcf7fa07fd1c8ec6c240", "sha256": "d33b73a5c734d04693b2cf0ee2db5b0741a4a46a1533268d3fc52b7340e033d1" }, "downloads": -1, "filename": "q2_itsxpress-1.6.1-py3-none-any.whl", "has_sig": false, "md5_digest": "070dad349845fcf7fa07fd1c8ec6c240", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">3.5", "size": 10034, "upload_time": "2018-07-17T17:50:50", "url": "https://files.pythonhosted.org/packages/b6/33/d44f34311a21d32dffcf2e54f5273499da9ff04e42636ff772b8c57a3721/q2_itsxpress-1.6.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ec714a1b284559d1252dcaf2d0dba447", "sha256": "a84692c130a98b948b4915daecc64dd573a1c4fc526f642b0c0eb66949171276" }, "downloads": -1, "filename": "q2_itsxpress-1.6.1.tar.gz", "has_sig": false, "md5_digest": "ec714a1b284559d1252dcaf2d0dba447", "packagetype": "sdist", "python_version": "source", "requires_python": ">3.5", "size": 309882, "upload_time": "2018-07-17T17:50:52", "url": "https://files.pythonhosted.org/packages/97/02/4c66fae1d4dd82a25c6a50380e20f9a4ba05ed159ff8d3a5460aac2936a9/q2_itsxpress-1.6.1.tar.gz" } ], "1.6.2": [ { "comment_text": "", "digests": { "md5": "4a0f42c51b863bd55202457a23bad75f", "sha256": "cc73b262ea4522b2a4f0d6c4cb9c79463e54accba1c37e1916cd41453485adea" }, "downloads": -1, "filename": "q2_itsxpress-1.6.2-py3-none-any.whl", "has_sig": false, "md5_digest": "4a0f42c51b863bd55202457a23bad75f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">3.5", "size": 10039, "upload_time": "2018-07-25T14:50:54", "url": "https://files.pythonhosted.org/packages/59/c3/731d4ba69a7575b0c7cfe18d1ffc07c1864f605d83b7355d39adfb48d9b6/q2_itsxpress-1.6.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c6b2e260a1c5245e9430ab1934f25dce", "sha256": "f05599916bbfd8c0db846fb4bb36cbe537dd33cece6a5729f58ed8c7c84e258c" }, "downloads": -1, "filename": "q2_itsxpress-1.6.2.tar.gz", "has_sig": false, "md5_digest": "c6b2e260a1c5245e9430ab1934f25dce", "packagetype": "sdist", "python_version": "source", "requires_python": ">3.5", "size": 314148, "upload_time": "2018-07-25T14:50:55", "url": "https://files.pythonhosted.org/packages/7a/cd/9d895339e5ba3b834b9601c4fb41d8eb4a0915250cf2d7a9983b71eec01f/q2_itsxpress-1.6.2.tar.gz" } ], "1.6.3": [ { "comment_text": "", "digests": { "md5": "2a70517ea58898585d320b129165379f", "sha256": "5c43e328efe5d6cbdd92f02bcc0d1076cb96b9ded888ebd4d511d2e20489318e" }, "downloads": -1, "filename": "q2_itsxpress-1.6.3-py3-none-any.whl", "has_sig": false, "md5_digest": "2a70517ea58898585d320b129165379f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">3.5", "size": 10039, "upload_time": "2018-07-25T19:30:40", "url": "https://files.pythonhosted.org/packages/0b/7f/7ee703991a9dbd79b09420ae333aef3ec9ef50e5f516c62d723725302eef/q2_itsxpress-1.6.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4f242c310c6de6902e86023f1e0d5337", "sha256": "5cb31263ad95cb80d7dbcb8d5cab1cd89c1a4cf677a5581d9dfd82f92ee13418" }, "downloads": -1, "filename": "q2_itsxpress-1.6.3.tar.gz", "has_sig": false, "md5_digest": "4f242c310c6de6902e86023f1e0d5337", "packagetype": "sdist", "python_version": "source", "requires_python": ">3.5", "size": 314164, "upload_time": "2018-07-25T19:30:41", "url": "https://files.pythonhosted.org/packages/e4/f2/61ac96f647c17d34dcb11c7deb7b5d730f0557542ff38880c6b012359818/q2_itsxpress-1.6.3.tar.gz" } ], "1.6.4": [ { "comment_text": "", "digests": { "md5": "aa28aa9eaf5b539ad1c4d0024838e6ed", "sha256": "f4fe1f3fdba667ca2a6d57e891cd3a9cbf5d4d1e4e9eb07790429dd0c15dd759" }, "downloads": -1, "filename": "q2_itsxpress-1.6.4-py3-none-any.whl", "has_sig": false, "md5_digest": "aa28aa9eaf5b539ad1c4d0024838e6ed", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">3.5", "size": 10040, "upload_time": "2018-07-26T15:21:22", "url": "https://files.pythonhosted.org/packages/c7/40/00146240e7103529373c58a60acec8f725fd699c8b8ed57f427b4f3ac487/q2_itsxpress-1.6.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c4d7429c398f083f9218b85788d4ef33", "sha256": "86a831308813d33538d0f5321b3d875ba0c3788645481410e3a02317f56fbfd1" }, "downloads": -1, "filename": "q2_itsxpress-1.6.4.tar.gz", "has_sig": false, "md5_digest": "c4d7429c398f083f9218b85788d4ef33", "packagetype": "sdist", "python_version": "source", "requires_python": ">3.5", "size": 316566, "upload_time": "2018-07-26T15:21:23", "url": "https://files.pythonhosted.org/packages/14/01/95b506ccbee2c348af8ac7a374945fd28e248eb0eb7d724ef9b75ad63fe6/q2_itsxpress-1.6.4.tar.gz" } ], "1.6.5": [ { "comment_text": "", "digests": { "md5": "f6e9a86e3756a218a89a7eb7553ab0ae", "sha256": "86fb671e64aa0e96e2ec34723db9e30bac9f03e1b5e36ccca61a392a0b00ec93" }, "downloads": -1, "filename": "q2_itsxpress-1.6.5-py3-none-any.whl", "has_sig": false, "md5_digest": "f6e9a86e3756a218a89a7eb7553ab0ae", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">3.5", "size": 10056, "upload_time": "2018-07-27T18:56:00", "url": "https://files.pythonhosted.org/packages/20/8b/71b9efedb480f6f5579e772cd01c315ff9e685feec9c3dfa8940aac3fdcf/q2_itsxpress-1.6.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3e1db5b3c86c3dabce232e74559d7b71", "sha256": "185da53c8c11831428157d3a252978740901fa3643de6eeb7abaf3a661879559" }, "downloads": -1, "filename": "q2_itsxpress-1.6.5.tar.gz", "has_sig": false, "md5_digest": "3e1db5b3c86c3dabce232e74559d7b71", "packagetype": "sdist", "python_version": "source", "requires_python": ">3.5", "size": 312505, "upload_time": "2018-07-27T18:56:02", "url": "https://files.pythonhosted.org/packages/d8/ec/d04db50a3f2394b8d7f4e8ea1417fd41c43b335113bba58479902def870a/q2_itsxpress-1.6.5.tar.gz" } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "a484aa569675e8ef4f516024a2fa4ba0", "sha256": "40b15efcc5b95441455f0dd035a014a56074ca6977fb8e5ee85b526506a1b3dd" }, "downloads": -1, "filename": "q2_itsxpress-1.7.0-py3-none-any.whl", "has_sig": false, "md5_digest": "a484aa569675e8ef4f516024a2fa4ba0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">3.5", "size": 10546, "upload_time": "2018-09-13T15:31:14", "url": "https://files.pythonhosted.org/packages/b0/90/aec019f9e7633e641e994ce46992392cd5d17f44bb90d0fcbf4dd142ed69/q2_itsxpress-1.7.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3b29862fb417c87530ebe4b6888709ae", "sha256": "622171ddbfb485f1ef3637477dcbc8b066913bcb7f293acef605152c81706c5c" }, "downloads": -1, "filename": "q2_itsxpress-1.7.0.tar.gz", "has_sig": false, "md5_digest": "3b29862fb417c87530ebe4b6888709ae", "packagetype": "sdist", "python_version": "source", "requires_python": ">3.5", "size": 318581, "upload_time": "2018-09-13T15:31:16", "url": "https://files.pythonhosted.org/packages/b6/1e/8f5e8fa72110555f0abf9a0695f8c6cde824cbe858409c4ec56ed07ad7e7/q2_itsxpress-1.7.0.tar.gz" } ], "1.7.1": [ { "comment_text": "", "digests": { "md5": "24f3692a32e0780c95feabdbaf365f80", "sha256": "0dd6a644a4e1b5d61fb3ebf796ff53e0c1ceffb67b48a66d67bc23bd938f8d35" }, "downloads": -1, "filename": "q2_itsxpress-1.7.1-py3-none-any.whl", "has_sig": false, "md5_digest": "24f3692a32e0780c95feabdbaf365f80", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">3.5", "size": 14468, "upload_time": "2018-09-19T16:51:50", "url": "https://files.pythonhosted.org/packages/89/82/363922f875efe31d2d4defe1e57a2bc68ad8aca6a1f32f48adeb3c5a4993/q2_itsxpress-1.7.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "74a3f3f87452c8ccec85116b827871c0", "sha256": "8c80beb3044a1c253fb93e1afa181641673353e8ebad71a2b27ae74f6f7c8443" }, "downloads": -1, "filename": "q2_itsxpress-1.7.1.tar.gz", "has_sig": false, "md5_digest": "74a3f3f87452c8ccec85116b827871c0", "packagetype": "sdist", "python_version": "source", "requires_python": ">3.5", "size": 318598, "upload_time": "2018-09-19T16:51:52", "url": "https://files.pythonhosted.org/packages/10/e3/aaeeaee95f991edbfa788c038d59ed0b65618f5aba797f26f7e80cde078b/q2_itsxpress-1.7.1.tar.gz" } ], "1.7.2": [ { "comment_text": "", "digests": { "md5": "46f665a79be743b44fc60cd5d92c3425", "sha256": "405c2d502edb873c80517d805a428addd4e143a633842f4cb712cae6c6320c1a" }, "downloads": -1, "filename": "q2_itsxpress-1.7.2-py3-none-any.whl", "has_sig": false, "md5_digest": "46f665a79be743b44fc60cd5d92c3425", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">3.5", "size": 10987, "upload_time": "2018-09-21T11:39:14", "url": "https://files.pythonhosted.org/packages/45/c8/0f5f0fd8a21fb28aabace831a7284ecbcb31ca9e2e1637fc079dd1699109/q2_itsxpress-1.7.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3938de45379ea26a4998cf83bfd129e1", "sha256": "5a74e8e7fee7f8dfd93df86c2399f15a233abcf8f54565c8585252d73f5cc2b8" }, "downloads": -1, "filename": "q2_itsxpress-1.7.2.tar.gz", "has_sig": false, "md5_digest": "3938de45379ea26a4998cf83bfd129e1", "packagetype": "sdist", "python_version": "source", "requires_python": ">3.5", "size": 318722, "upload_time": "2018-09-21T11:39:15", "url": "https://files.pythonhosted.org/packages/ac/c8/e96d333a7c73a7ba6c21097271fadc9f8a2302060e7fb2906fc4a9344898/q2_itsxpress-1.7.2.tar.gz" } ], "1.7.3": [ { "comment_text": "", "digests": { "md5": "0f874fd523db127c7ce1b11f66490456", "sha256": "a24140423abb28b3875ee2c80271acec9c8d719a122dab70b283c93c6d20b24a" }, "downloads": -1, "filename": "q2_itsxpress-1.7.3-py3-none-any.whl", "has_sig": false, "md5_digest": "0f874fd523db127c7ce1b11f66490456", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">3.5", "size": 14008, "upload_time": "2019-03-08T20:02:36", "url": "https://files.pythonhosted.org/packages/0f/2d/4ece891bee37e931503bba8b1b46d2c67e444faec6d9470e31e56f29119d/q2_itsxpress-1.7.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "28766dc564414c1433ad2660bd84cb0e", "sha256": "efe5fb32e97967d93d4ff2a2baeba9b9f4e92a8f53b5d9554cecc1876fa21718" }, "downloads": -1, "filename": "q2_itsxpress-1.7.3.tar.gz", "has_sig": false, "md5_digest": "28766dc564414c1433ad2660bd84cb0e", "packagetype": "sdist", "python_version": "source", "requires_python": ">3.5", "size": 318792, "upload_time": "2019-03-08T20:02:37", "url": "https://files.pythonhosted.org/packages/ac/51/7de5e03bc894e30824701b61aab3299604ca37ed8dfde2a20baf8516fc9c/q2_itsxpress-1.7.3.tar.gz" } ], "1.7.4": [ { "comment_text": "", "digests": { "md5": "8cacf3733c729dc77c6cdd819d576fe3", "sha256": "1aa7731eb0f6df642ddc9c356c72c52bfad3d42d44d0ed1f08a678fc44c6dd38" }, "downloads": -1, "filename": "q2_itsxpress-1.7.4-py3-none-any.whl", "has_sig": false, "md5_digest": "8cacf3733c729dc77c6cdd819d576fe3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">3.5", "size": 13013, "upload_time": "2019-06-14T20:21:45", "url": "https://files.pythonhosted.org/packages/d4/67/9265b472119a5a17fc25337ba9dbd906a3aa895c079f941cceee509d9558/q2_itsxpress-1.7.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "38609aec3b29ec8baec4be283d4d64df", "sha256": "e8f68b27170906ee8332bbfed380932fa9baaee331bde0c6a477ac4cc389ba17" }, "downloads": -1, "filename": "q2_itsxpress-1.7.4.tar.gz", "has_sig": false, "md5_digest": "38609aec3b29ec8baec4be283d4d64df", "packagetype": "sdist", "python_version": "source", "requires_python": ">3.5", "size": 318872, "upload_time": "2019-06-14T20:21:47", "url": "https://files.pythonhosted.org/packages/84/41/fb374b07fcb425916053c4252316a3074681af6aadec070cf4015eeb2051/q2_itsxpress-1.7.4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "8cacf3733c729dc77c6cdd819d576fe3", "sha256": "1aa7731eb0f6df642ddc9c356c72c52bfad3d42d44d0ed1f08a678fc44c6dd38" }, "downloads": -1, "filename": "q2_itsxpress-1.7.4-py3-none-any.whl", "has_sig": false, "md5_digest": "8cacf3733c729dc77c6cdd819d576fe3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">3.5", "size": 13013, "upload_time": "2019-06-14T20:21:45", "url": "https://files.pythonhosted.org/packages/d4/67/9265b472119a5a17fc25337ba9dbd906a3aa895c079f941cceee509d9558/q2_itsxpress-1.7.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "38609aec3b29ec8baec4be283d4d64df", "sha256": "e8f68b27170906ee8332bbfed380932fa9baaee331bde0c6a477ac4cc389ba17" }, "downloads": -1, "filename": "q2_itsxpress-1.7.4.tar.gz", "has_sig": false, "md5_digest": "38609aec3b29ec8baec4be283d4d64df", "packagetype": "sdist", "python_version": "source", "requires_python": ">3.5", "size": 318872, "upload_time": "2019-06-14T20:21:47", "url": "https://files.pythonhosted.org/packages/84/41/fb374b07fcb425916053c4252316a3074681af6aadec070cf4015eeb2051/q2_itsxpress-1.7.4.tar.gz" } ] }