{ "info": { "author": " Mark B. Schultz, Anders Gon\u00e7alves da Silva, Jason Kwong, Torsten Seemann ", "author_email": "dr.mark.schultz@gmail.com", "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": "Pandoo\n============\n\nTo get help::\n\n pandoo -h\n\n![Pandoo](http://bioinformatics.mdu.unimelb.edu.au/~schultzm/pandoo/pipeline.png)\n\nAuthors\n-------\n\nMark B Schultz, Anders Gon\u00e7alves da Silva, Jason Kwong, Torsten Seemann\n\nIntroduction\n------------\n\n**Pandoo** is a command-line tool for exploring and characterising bacterial whole genome DNA sequence data. It is a computational pipeline written in python and is scalable via implementation using the ruffus pipeline library. **Ruffus** handles task-scheduling and task-parallelisation during the run. Pandoo is particularly useful for pathogenic species as it performs AMR and MLST profiling but in theory could be used for any bacterial species against any sequence database. It was originally written to characterise and QC assemblies and reads of bacterial isolates at the Microbiological Diagnostic Unit Public Health Laboratory, Victoria, Australia. Input is a tab-delimited text file that points the software to the assembly and paired-end read files for each isolate. Specifically, the file has no header, one line per isolate, and four columns per line in the following column order:: \n\n +-------------+------------------------------------------------+----------------------------+---------------------------+\n |isolate_name | full_path_to_assembly (i.e., a 'contigs' file) | full_path_to_paired_reads1 | full_path_to_paired_reads2|\n +-------------+------------------------------------------------+----------------------------+---------------------------+\n\nAn example **isolates.tab** file looks like this:: \n\n isolate-1\t/path/to/isolate-1/contigs.fa\t/path/to/isolate-1/reads-1.fq.gz\t/path/to/isolate-1/reads-2.fq.gz\n isolate-2\t/path/to/isolate-2/contigs.fa\t/path/to/isolate-2/reads-1.fq.gz\t/path/to/isolate-2/reads-2.fq.gz\n isolate-3\t/path/to/isolate-3/contigs.fa\t/path/to/isolate-3/reads-1.fq.gz\t/path/to/isolate-3/reads-2.fq.gz\n isolate-4\t/path/to/isolate-4/contigs.fa\t/path/to/isolate-4/reads-1.fq.gz\t/path/to/isolate-4/reads-2.fq.gz\n isolate-5\t/path/to/isolate-5/contigs.fa\t/path/to/isolate-5/reads-1.fq.gz\t/path/to/isolate-5/reads-2.fq.gz\n\n\nInstalling dependencies\n-----------------------\n\nThe following packages need to be installed before running pandoo. To install dependencies, do something like this (you may need to add '--user' after pip3 install commands if you don't have admin privileges):: \n\n cpanm -i Moo\n cpanm -i List::MoreUtils\n cpanm -i Bio::Perl\n brew tap homebrew/science\n brew tap tseemann/homebrew-bioinformatics-linux\n brew update\n brew install mlst\n brew install abricate\n brew install seqtk\n brew install mummer\n brew install bowtie2\n brew install cd-hit\n brew install kraken\n brew install graphviz\n pip3 install git+https://github.com/MDU-PHL/ngmaster.git #(see install instructions at https://github.com/MDU-PHL/ngmaster)\n pip3 install git+https://github.com/MDU-PHL/meningotype.git #(see install instructions at https://github.com/MDU-PHL/meningotype)\n pip3 install biopython\n pip3 install ariba\n #install sistr from http://journals.plos.org/plosone/article?id=10.1371/journal.pone.0147101 (location?)\n git clone https://github.com/MDU-PHL/legsta.git # then add it to your path so is executable with 'legsta'\n git clone https://github.com/MDU-PHL/LisSero.git # then add it to your path so is executable with 'LisSero.py'\n git clone https://github.com/lskatz/mashtree.git # then add it to your path so is executable with 'mashtree.pl'\n\n\nFollow the instructions at https://ccb.jhu.edu/software/kraken to set up the databases.\n\n\nInstalling Pandoo\n-----------------------\n\nTo perform any of these install steps **for all users, remove '--user'**. The final symlink step is not required if installing for all users. _Pandoo is written for **python3** and installation requires **pip3** and **setuptools**_. To install the latest 'stable' version of pandoo for the current user only, do:: \nFirst update `python3`, `pip3`, `setuptools`. Then try:\n pip3 install pandoo --user -I #-I means ignore those already installed and reinstall the versions as stated in setup.py, especially needing ruffus version 2.6.2 instead of ruffus 2.6.3.\n\n\n\nTo upgrade:: \n\n pip3 install pandoo --upgrade\n\nTo install the latest, potentially unstable, bleeding-edge version:: \n\n pip3 install --user https://github.com/schultzm/pandoo/zipball/master\n\n**If installing via the '--user' option**\nCheck where the executable is:: \n\n which pandoo # ~/.local/bin/pandoo\n\nCheck where the site-packages are:: \n\n python3 -m site --user-site # ~/.local/lib/python3.6/site-packages\n\nNow, symlink the packaged databases in site-packages above to the folder containing the executable shown above:: \n\n ln -s ~/.local/lib/python3.6/site-packages/Pandoo/CARD/ ~/.local/bin\n ln -s ~/.local/lib/python3.6/site-packages/Pandoo/VFDB/ ~/.local/bin\n ln -s ~/.local/lib/python3.6/site-packages/Pandoo/qacGenes/ ~/.local/bin\n\n\n**To uninstall**, do:: \n\n pip3 uninstall pandoo\n # Remove the symlinks\n rm -r ~/.local/bin/CARD\n rm -r ~/.local/bin/VFDB*\n rm -r ~/.local/bin/plasmidfinder\n\n**If accidentally installed with pip2 or pip, do**::\n pip uninstall pandoo\n\nCheck that the dependencies are in the path using::\n\n pandoo check\n\nAdd dependencies as required.\n\nQuickstart tutorial\n-------------------\n\n**For large jobs, run in screen mode**, otherwise skip this step:: \n\n screen -SL screenname \n\nAll screen-output within the screen started above, will be saved to:: \n\n screenlog.%n # Where %n is the number of the screen.\n\nAfter exiting the screen, the screenlog.0 can be viewed as the run progresses using standard command line actions:: \n\n tail screenlog.0\n less screenlog.0\n watch \"tail screenlog.0\"\n\n**To get help for pandoo**, just do:: \n\n pandoo -h\n\nOutput looks like:: \n\n usage: pandoo \n\n This is a tool for exploring your bacterial genome data. Given some assemblies\n and/or paired-end read sets, run a pipeline of software tools to generate an\n NJ tree from assemblies and a complementary table of metadata/results (contig\n and read QC, mlst, species ID, resistance genes, virulence factors, plasmid\n replicon types).\n\n optional arguments:\n -h, --help show this help message and exit\n -v, --version Print version and quit.\n\n Commands:\n\n check Check pipeline dependencies\n input Generate input table\n run Run the pandoo pipeline\n merge Merge two metadata tables\n\nNotice, above, four modules: one each for **check**, **input**, **run** and **merge**. Each can be run independently. \n\n**check module**\nThis module will check if the required softwares are installed and executable as per the calls to these programs used by pandoo.\n\n**input module**\n\nThis module is used to generate the isolates.tab file. Final output from this command is sent to **standard out (stdout)**. To capture the information from stdout, redirect it to a file using '> isolates.tab':: \n\n pandoo input -h\n pandoo input -i isolates.txt > isolates.tab\n\n**run module**\n\nThis module is used to run the analysis pipeline. In the example below, output will be a folder called **results** and we have selected to use the **tree option with -t** :: \n\n pandoo run -h\n pandoo run -i isolates.tab -o results -t\n\nIn the results folder there is a sub-folder for each isolate containing the results for each isolate. Also within the results folder there are three files:: \n\n results/isolates_metadataAll.csv\n results/isolates_metadataAll_simplified.csv\n results/isolates_mashtree.tre\n\n**merge module**\n\nThis module is used to join existing metadata tables (e.g., LIMS table) with one of the output tables from the run module. In this example, an excel file (AMR\\_ongoing\\_20170307.xlsx, with a header on line 5 and first column containing isolate names that were expanded with a wildcard search during the **pandoo input** step above) is joined with the results/isolates\\_metadataAll\\_simplified.csv table. Again, final output is sent to stdout, which in this example is redirected to file using '> results/AMR\\_ongoing\\_20170307\\_join\\_isolates\\_metadataAll\\_simplified.csv':: \n\n pandoo merge -h\n pandoo merge -l AMR_ongoing_20170307.xlsx -r results/isolates_metadataAll_simplified.csv > results/AMR_ongoing_20170307_join_isolates_metadataAll_simplified.csv\n\nWhy use Pandoo?\n---------------------\n\nPandoo provides a single table of metadata and a tree that the metadata can be plotted next to using **phandango** \n\nhttps://jameshadfield.github.io/phandango/\n\n![alt tag](http://bioinformatics.mdu.unimelb.edu.au/~schultzm/pandoo/phandango.png)\n\nThe single NJ tree for the whole isolate set is inferred using the program **mashtree.pl** from a distance matrix computed by **mash**. The tree will not include isolates for which the assembly file is missing.\n\nThe summary table (csv) for all isolates combines the results from:\n\n1. inferred species from running kraken on the reads \n2. inferred species call from running kraken on the contigs (assemblies) \n3. Inferred consensus species call from a consensus of the best hit from kraken on the reads and kraken on the contigs \n4. Based on the species call, runs mlst using the appropriate scheme (if available) or autodetects scheme \n5. Gene content profiles using unlimited number of user databases of resistance genes, plasmid rep genes, virulence genes, etc., using abricate (contigs, BLAST contigs against database, assembly based) and ariba (reads, MiniMapping to database, mapping based) \n6. QC metrics using seqtk for reads and contigs \n7. Reports software versions and paths to databases used in the analysis (for repeatability) \n8. The pipeline is modular in that the user can choose not to perform the tree inference step and/or the user can choose not to perform the read mapping step using ariba \n9. A flowchart is produced for the run (however, if the total path length of the results folders combined exceeds 16384 characters then the flowchart cannot be drawn) \n10. The user can supply reads and/or contigs for each file. The final tree will only include taxa for which contigs have been supplied \n\n\nAssumptions\n-----------\n\nFirst you need to download assemblies or perform the assemblies yourself from readsets (using e.g., unicycler https://github.com/rrwick/Unicycler, which uses SPAdes (http://bioinf.spbau.ru/spades) or MegaHit (https://github.com/voutcn/megahit)). It doesn't necessarily make sense to supply reads for an isolate but contigs that have been assembled using a readset other than the one supplied. If you don't have reads, leave the columns blank for that isolate (for example, if you just want to characterise assemblies downloaded from NCBI GenBank). If you don't have contigs and only have reads, leave the column blank for contigs (but without contigs there will be no tree). \n\nLicence\n-------\n\nPandoo is:\n\n| Copyright (C) 2017 Mark B Schultz \n| https://github.com/schultzm/ \n| email: dr.mark.schultz@gmail.com \n\nThis program is free software: you can redistribute it and/or modify\nit under the terms of the GNU Affero General Public License as published\nby the Free Software Foundation, either version 3 of the License, or\n(at your option) any later version.\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU Affero General Public License for more details.\nYou should have received a copy of the GNU Affero General Public License\nalong with this program. If not, see .\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "https://github.com/schultzm/pandoo/zipball/master", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "", "keywords": "pipeline,ruffus,bacteria,contigs,assembly,assemblies,reads,paired-end,public health microbiology,microbial genomics", "license": "AGPL-3.0", "maintainer": "", "maintainer_email": "", "name": "pandoo", "package_url": "https://pypi.org/project/pandoo/", "platform": "", "project_url": "https://pypi.org/project/pandoo/", "project_urls": { "Download": "https://github.com/schultzm/pandoo/zipball/master" }, "release_url": "https://pypi.org/project/pandoo/0.3.3/", "requires_dist": [ "scipy (>=0.19.1)", "numpy (>=1.13.1)", "pandas (>=0.20.3)", "ete3 (>=3.0.0b35)", "ruffus (>=2.6.3)", "biopython (>=1.74)", "matplotlib (>=>=3.1.0)" ], "requires_python": "", "summary": "Pandoo: a pipeline of tools for bacterial genomics.", "version": "0.3.3" }, "last_serial": 5680566, "releases": { "0.1.74": [ { "comment_text": "", "digests": { "md5": "e55c6f01e8ae22e4add1fdf162872ae7", "sha256": "7bef2c29793068d4875e62b0759ca89d01e5e5185f4a77297551ff849c20c6aa" }, "downloads": -1, "filename": "pandoo-0.1.74.tar.gz", "has_sig": false, "md5_digest": "e55c6f01e8ae22e4add1fdf162872ae7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3426061, "upload_time": "2017-05-04T08:51:59", "url": "https://files.pythonhosted.org/packages/df/02/91e71d32a49e91d681d4b315a09e0201d35dc379d2f8b7e76904fc85033f/pandoo-0.1.74.tar.gz" } ], "0.1.76": [ { "comment_text": "", "digests": { "md5": "df44a93d074c3dd11bc7dd3c4bc5eed2", "sha256": "71df20c22d3728506872cac7d69f8a5561f8b935b3728a73716907a75d06e742" }, "downloads": -1, "filename": "pandoo-0.1.76.tar.gz", "has_sig": false, "md5_digest": "df44a93d074c3dd11bc7dd3c4bc5eed2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3426058, "upload_time": "2017-05-04T08:56:59", "url": "https://files.pythonhosted.org/packages/09/d0/c385038c661e93e6dddaf10ec020891a502d283a17d12ab6ed2a8c6f2f3a/pandoo-0.1.76.tar.gz" } ], "0.1.77": [ { "comment_text": "", "digests": { "md5": "a1804d616c6ed4484ca31841b0053fdb", "sha256": "6335772e7b50fb691b0aeca468578410aba69c03533d46eed924ffb786f45133" }, "downloads": -1, "filename": "pandoo-0.1.77.tar.gz", "has_sig": false, "md5_digest": "a1804d616c6ed4484ca31841b0053fdb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3426052, "upload_time": "2017-05-04T09:18:05", "url": "https://files.pythonhosted.org/packages/29/77/0c31ae913cd254d9d3238adf40816a625763e48ef97f54f84f2c3ee8cf74/pandoo-0.1.77.tar.gz" } ], "0.1.78": [ { "comment_text": "", "digests": { "md5": "c86bc8ae4fe7390e5cdc4d502a5d6841", "sha256": "52cb101b97e6c2c1de99122b74ca48de151f379ad2992eb79f978b33eb837771" }, "downloads": -1, "filename": "pandoo-0.1.78.tar.gz", "has_sig": false, "md5_digest": "c86bc8ae4fe7390e5cdc4d502a5d6841", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3426066, "upload_time": "2017-05-04T09:27:14", "url": "https://files.pythonhosted.org/packages/c8/8f/6c85cb92c2a151da8aabbe1bf250c3960f3b17a90e1a70f8baac751713e8/pandoo-0.1.78.tar.gz" } ], "0.1.82": [ { "comment_text": "", "digests": { "md5": "23898e1ea1513ebc6c85ca6043d9a20d", "sha256": "fdbf6e8b235cd12f8ac0183973ae29a2c53313a4ecfd354040cd2c81ee233676" }, "downloads": -1, "filename": "pandoo-0.1.82.tar.gz", "has_sig": false, "md5_digest": "23898e1ea1513ebc6c85ca6043d9a20d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3430204, "upload_time": "2017-05-17T05:31:28", "url": "https://files.pythonhosted.org/packages/fe/d7/bdc6c57b1cb921a545bb16d0fbb009f1c6d449b82d909612d96937101975/pandoo-0.1.82.tar.gz" } ], "0.1.83": [ { "comment_text": "", "digests": { "md5": "2f5eca23fd6c435a532e1640da6bf59c", "sha256": "59d392e286cde6189f93cb757b308cab6638c8fe225995c329b57f9a364cab4e" }, "downloads": -1, "filename": "pandoo-0.1.83.tar.gz", "has_sig": false, "md5_digest": "2f5eca23fd6c435a532e1640da6bf59c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3430253, "upload_time": "2017-05-17T06:40:23", "url": "https://files.pythonhosted.org/packages/77/99/3f99bd511a31bace5362422946c0713fa77bef3b54c78e15caa4ea9d9df4/pandoo-0.1.83.tar.gz" } ], "0.1.84": [ { "comment_text": "", "digests": { "md5": "ce349233fc475b313fda91471bcce81b", "sha256": "0a6d4f11e0e3d40aff6bf022dac86b45bd9324030d8c2f6681d8cb4dc6260311" }, "downloads": -1, "filename": "pandoo-0.1.84.tar.gz", "has_sig": false, "md5_digest": "ce349233fc475b313fda91471bcce81b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3430274, "upload_time": "2017-05-17T13:14:30", "url": "https://files.pythonhosted.org/packages/09/ca/98c511e6f4808f5059ad7af642400a69f0f042fefca0216d348587f2d518/pandoo-0.1.84.tar.gz" } ], "0.1.85": [ { "comment_text": "", "digests": { "md5": "8f138ead112ebbe0b6d1965a11a82bb5", "sha256": "16787e8677dc1c5e50a1a00c503f1f83e6e8753daaa0e594dcf87a34516b9fbb" }, "downloads": -1, "filename": "pandoo-0.1.85.tar.gz", "has_sig": false, "md5_digest": "8f138ead112ebbe0b6d1965a11a82bb5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3428569, "upload_time": "2017-05-17T13:31:37", "url": "https://files.pythonhosted.org/packages/e2/6e/298839c368ef08273ff31b6d5930c2640cc38e637ab5b7e60617acb1b117/pandoo-0.1.85.tar.gz" } ], "0.1.86": [ { "comment_text": "", "digests": { "md5": "e3f1b27dc32b47f9c93c53a4cc7b6898", "sha256": "a1a2152673af967a86e3b78368a0cc5a3dfe54e3aaa6e50d67d12a71e43dd820" }, "downloads": -1, "filename": "pandoo-0.1.86.tar.gz", "has_sig": false, "md5_digest": "e3f1b27dc32b47f9c93c53a4cc7b6898", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3428559, "upload_time": "2017-05-17T13:37:36", "url": "https://files.pythonhosted.org/packages/25/f4/47fe2fbd3d771a59e2fe4b196d39493a8519915788347b1adb2cc0ae125e/pandoo-0.1.86.tar.gz" } ], "0.1.87": [ { "comment_text": "", "digests": { "md5": "8d38fa6abc2edb26eca91fb56aafbeff", "sha256": "fbe57cab89d06191eb7e3c830173dab0db5f62520a8078ec3ecc9d09d6c467cb" }, "downloads": -1, "filename": "pandoo-0.1.87.tar.gz", "has_sig": false, "md5_digest": "8d38fa6abc2edb26eca91fb56aafbeff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3429835, "upload_time": "2017-05-18T08:13:59", "url": "https://files.pythonhosted.org/packages/db/06/47b88541f00caead6d121262d4506805caab4ad572c6defd75d65d815b3e/pandoo-0.1.87.tar.gz" } ], "0.1.88": [ { "comment_text": "", "digests": { "md5": "5c7f19858c55ae08ca023abf079ed969", "sha256": "9bd537216042a57626535366ec79cdb105cb3abad4e943f08eed5f3a8fd7d287" }, "downloads": -1, "filename": "pandoo-0.1.88.tar.gz", "has_sig": false, "md5_digest": "5c7f19858c55ae08ca023abf079ed969", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3430960, "upload_time": "2017-05-19T06:56:35", "url": "https://files.pythonhosted.org/packages/43/91/f90067f24d446538761be825a5ab2242a7eb0544703b9448fd60b234e0cc/pandoo-0.1.88.tar.gz" } ], "0.1.89": [ { "comment_text": "", "digests": { "md5": "9035c34fbb541caa09125caf00cff45a", "sha256": "289b242453e8f5092927c9e3c04e458d9e352349395580109522f02aaafdcb71" }, "downloads": -1, "filename": "pandoo-0.1.89.tar.gz", "has_sig": false, "md5_digest": "9035c34fbb541caa09125caf00cff45a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3431294, "upload_time": "2017-05-23T11:18:26", "url": "https://files.pythonhosted.org/packages/c3/5d/5378fda6dac6360ddfebe0bd4dc602c636dc7b01ccf9934cde593b898411/pandoo-0.1.89.tar.gz" } ], "0.1.90": [ { "comment_text": "", "digests": { "md5": "704f84db85d154a802e10bb9cf3fe01b", "sha256": "d195e664a4912d154d230f504275efd92a2c38cbcceb5baaef9308def8af5b51" }, "downloads": -1, "filename": "pandoo-0.1.90.tar.gz", "has_sig": false, "md5_digest": "704f84db85d154a802e10bb9cf3fe01b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3431682, "upload_time": "2017-07-11T00:11:35", "url": "https://files.pythonhosted.org/packages/86/c9/439be14ff1e0b96c6466fbbb88435bf5823681d69dfd6a1cd1f576a60db8/pandoo-0.1.90.tar.gz" } ], "0.1.91": [ { "comment_text": "", "digests": { "md5": "9548d8a711c358345ed04f1b02750079", "sha256": "1a33ccd2900b7e7df1c44f9c5a2e0cbb8f018a2cb90afbc38bfd42ca4d698689" }, "downloads": -1, "filename": "pandoo-0.1.91.tar.gz", "has_sig": false, "md5_digest": "9548d8a711c358345ed04f1b02750079", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3431676, "upload_time": "2017-07-11T23:52:04", "url": "https://files.pythonhosted.org/packages/5c/85/ca6931b301a9ce1b5f0df9043ad313407b8224cfcd3d448e654d2a6e322e/pandoo-0.1.91.tar.gz" } ], "0.1.92": [ { "comment_text": "", "digests": { "md5": "683641ed543c34d33481a42daa14cf24", "sha256": "56999f9b57d5b9cd8122548a7758d3e3f1c42f0d52a736beb5ab4c374161290e" }, "downloads": -1, "filename": "pandoo-0.1.92.tar.gz", "has_sig": false, "md5_digest": "683641ed543c34d33481a42daa14cf24", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3431679, "upload_time": "2017-07-12T04:47:45", "url": "https://files.pythonhosted.org/packages/97/28/e9d3df17c6615aec86c173156008de0ae3555519c64499a82219be31997b/pandoo-0.1.92.tar.gz" } ], "0.1.93": [ { "comment_text": "", "digests": { "md5": "69c73ac7d1d028373fa8ef27d9a9356c", "sha256": "d23a059610b61100c8d8a8aa28604914fc80797b5e262a3d3c40b6e473d63e9c" }, "downloads": -1, "filename": "pandoo-0.1.93.tar.gz", "has_sig": false, "md5_digest": "69c73ac7d1d028373fa8ef27d9a9356c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3431671, "upload_time": "2017-07-12T04:53:11", "url": "https://files.pythonhosted.org/packages/bc/fb/f72e54d07c01aab004337fa22e3c003473dc45aac8eea39bc48dffde2a3d/pandoo-0.1.93.tar.gz" } ], "0.1.94": [ { "comment_text": "", "digests": { "md5": "58a93cc29e4d274316b6305c503ae3e8", "sha256": "95edb8149a5bfd9a452cec08aa29f85b646663159520ba4448ba708bfe44f829" }, "downloads": -1, "filename": "pandoo-0.1.94.tar.gz", "has_sig": false, "md5_digest": "58a93cc29e4d274316b6305c503ae3e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3431686, "upload_time": "2017-08-10T06:45:05", "url": "https://files.pythonhosted.org/packages/b8/97/3a75bc86d9d7c1eb4a71d37ae035d45685efbf14493e62f29a54b0f0f511/pandoo-0.1.94.tar.gz" } ], "0.1.95": [ { "comment_text": "", "digests": { "md5": "1bdfd0e42a8123fb0f2ba48517f20a83", "sha256": "087d63222691cf48a045fe332a0601e0bf607def8b1144ef83e7db8adc92cb67" }, "downloads": -1, "filename": "pandoo-0.1.95.tar.gz", "has_sig": false, "md5_digest": "1bdfd0e42a8123fb0f2ba48517f20a83", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3431771, "upload_time": "2017-08-17T00:35:17", "url": "https://files.pythonhosted.org/packages/b5/91/3409bf189f43d76c6aadcd969ba7a9a161e8ad86eb0fa0cd38e514624cc4/pandoo-0.1.95.tar.gz" } ], "0.1.97": [ { "comment_text": "", "digests": { "md5": "d0cd7e4c0c7647faa80669ddd6669bab", "sha256": "cf40dcc952fbe58200be864c656e9a8f018debb6a2b4827c460c249240a88eb4" }, "downloads": -1, "filename": "pandoo-0.1.97.tar.gz", "has_sig": false, "md5_digest": "d0cd7e4c0c7647faa80669ddd6669bab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3432125, "upload_time": "2017-08-23T05:36:35", "url": "https://files.pythonhosted.org/packages/7c/3f/ca467a498ced434b003f0db78eff0bf87ad796d0bda91149f276bca15465/pandoo-0.1.97.tar.gz" } ], "0.1.98": [ { "comment_text": "", "digests": { "md5": "22aa92e4be19675c7be1758ce7a41950", "sha256": "ac69eeea58626a8d22c0270023cda2a2de0449f540b515b8ef5a9b923e97a67f" }, "downloads": -1, "filename": "pandoo-0.1.98.tar.gz", "has_sig": false, "md5_digest": "22aa92e4be19675c7be1758ce7a41950", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3432260, "upload_time": "2017-08-25T08:01:33", "url": "https://files.pythonhosted.org/packages/b6/e7/df86533d946b7c11e48f823a35d96e8b672d876eb3fd8fd84b473fd20321/pandoo-0.1.98.tar.gz" } ], "0.1.99": [ { "comment_text": "", "digests": { "md5": "a89d867f66636bd9e2ca78377f1b5351", "sha256": "551adffff4e3bc70a324b53941b87eaa74f0d58f699bd57994bb8b3878ec2eb6" }, "downloads": -1, "filename": "pandoo-0.1.99.tar.gz", "has_sig": false, "md5_digest": "a89d867f66636bd9e2ca78377f1b5351", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3433027, "upload_time": "2017-08-29T07:41:13", "url": "https://files.pythonhosted.org/packages/ca/0d/dc4e32223406f7ce9eafb58bd7a0bb5179c9b74562f3406086e325dcf745/pandoo-0.1.99.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "7e7f4541ff8a4ac1d01698ee5d4df442", "sha256": "c0ce3b0e4b021c09135b4beaf6e6c08703768148ba5b62795179c9544330f740" }, "downloads": -1, "filename": "pandoo-0.2.0.tar.gz", "has_sig": false, "md5_digest": "7e7f4541ff8a4ac1d01698ee5d4df442", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3433039, "upload_time": "2017-08-30T00:25:36", "url": "https://files.pythonhosted.org/packages/90/7c/209d0308b5d02f322cc380444b30624f58cedcfd111ee687b3a3496ba2e1/pandoo-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "1a2a90bc60a47439cb50fa2fdf63f1f3", "sha256": "bb74b6387e5022cfdbc85bb3e3d9e4c84435e3102cf724c50188575e1b77a07d" }, "downloads": -1, "filename": "pandoo-0.2.1.tar.gz", "has_sig": false, "md5_digest": "1a2a90bc60a47439cb50fa2fdf63f1f3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3433037, "upload_time": "2017-08-30T00:29:03", "url": "https://files.pythonhosted.org/packages/51/f0/c03c21c9ffe05c1e2c5233f68e1414138e4845410102fe6fc047df49111b/pandoo-0.2.1.tar.gz" } ], "0.2.10": [ { "comment_text": "", "digests": { "md5": "df7f571c5474dfcf5f8e2f64e3d5743d", "sha256": "13f331187fa449b68fbd66c12257a275f8845428b62ec71cb21818bd9a22f47f" }, "downloads": -1, "filename": "pandoo-0.2.10.tar.gz", "has_sig": false, "md5_digest": "df7f571c5474dfcf5f8e2f64e3d5743d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3432803, "upload_time": "2017-09-08T06:52:28", "url": "https://files.pythonhosted.org/packages/8a/40/8ff4a6822560233eaf9f580e7b71bc927d4f9ce33ef96e207e2e5f8a2418/pandoo-0.2.10.tar.gz" } ], "0.2.13": [ { "comment_text": "", "digests": { "md5": "ded1aabdfd0621da2a1f6e9bf452c3cc", "sha256": "8c5c6804c33058a26a4b7706875dfb06c11f655c07e64dee29e12a0b692ebe62" }, "downloads": -1, "filename": "pandoo-0.2.13.tar.gz", "has_sig": false, "md5_digest": "ded1aabdfd0621da2a1f6e9bf452c3cc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3432927, "upload_time": "2017-10-10T04:28:32", "url": "https://files.pythonhosted.org/packages/9c/9a/e112740d1c278ba271590cfd3e442b8d5bf8015e972dc8fb3353831244a6/pandoo-0.2.13.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "8bcd9e22001448fa369ef363901e5301", "sha256": "ea718f2fc523bf1078d1fc0c11d71ef1cdebacb3ea63ff25941fcf0ac52710cf" }, "downloads": -1, "filename": "pandoo-0.2.2.tar.gz", "has_sig": false, "md5_digest": "8bcd9e22001448fa369ef363901e5301", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3433037, "upload_time": "2017-08-30T00:31:46", "url": "https://files.pythonhosted.org/packages/7e/e7/83e55fd302d6f679166da7bbf0010974261b64a9c2d9c395747bd6fd8497/pandoo-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "b8715c114797679a03251ef8bce1eb8b", "sha256": "95f08d9b2163cdb853d535aca77183acaf9a1ef80bde375b5306142ab3d17d56" }, "downloads": -1, "filename": "pandoo-0.2.3.tar.gz", "has_sig": false, "md5_digest": "b8715c114797679a03251ef8bce1eb8b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3433034, "upload_time": "2017-08-30T01:30:11", "url": "https://files.pythonhosted.org/packages/94/1d/66eea3a54351abb6eb338c48109c3127f557461927a16e957a450311ec64/pandoo-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "d8ebb3682fcc6746c18b5bcff6f64662", "sha256": "ae432adb970882af8078b6964e2513117f01a9cb2a5bbe4f572d419c334cd3f2" }, "downloads": -1, "filename": "pandoo-0.2.4.tar.gz", "has_sig": false, "md5_digest": "d8ebb3682fcc6746c18b5bcff6f64662", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3433018, "upload_time": "2017-08-30T12:30:11", "url": "https://files.pythonhosted.org/packages/91/4f/6b4a6f698bfa2aefb1758f7e2decb91bb0b9db0d526b46e383c97e6e3ae2/pandoo-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "c2f616eba1f21dd4aaf4a353cb1efef9", "sha256": "f6cdfc69e460db438037febf261dcd02ab7cb9c00a87cc004932a53e83fe771d" }, "downloads": -1, "filename": "pandoo-0.2.5.tar.gz", "has_sig": false, "md5_digest": "c2f616eba1f21dd4aaf4a353cb1efef9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3432939, "upload_time": "2017-08-31T07:07:11", "url": "https://files.pythonhosted.org/packages/a5/13/d801b28f62d2192cebdb23c083e38053f5743c09b8cca15957d6b36a5e68/pandoo-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "6813492e9568b8dc44ad1d3d98ced790", "sha256": "5b0d4bb6d8b648a3c668cb54baa94584eaa8c98a7cfda80d33d7f6908f45290f" }, "downloads": -1, "filename": "pandoo-0.2.6.tar.gz", "has_sig": false, "md5_digest": "6813492e9568b8dc44ad1d3d98ced790", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3432939, "upload_time": "2017-08-31T07:38:33", "url": "https://files.pythonhosted.org/packages/35/c7/1eae1b273027f38aae118e574a94755c865871790a57cc781b9d1035f42a/pandoo-0.2.6.tar.gz" } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "f91b72c95562f40cbf0d93629a3e60e0", "sha256": "457c8658396107937eeb8ff16249606aff2ed23421e0dfa84191ebd901884743" }, "downloads": -1, "filename": "pandoo-0.2.7.tar.gz", "has_sig": false, "md5_digest": "f91b72c95562f40cbf0d93629a3e60e0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3432948, "upload_time": "2017-09-01T01:55:41", "url": "https://files.pythonhosted.org/packages/6b/6f/2e3d17e2c197cb70e83c03e808708bdd85bea29e8f43d753b812d34241bd/pandoo-0.2.7.tar.gz" } ], "0.2.8": [ { "comment_text": "", "digests": { "md5": "33f55d631f0325e5a18c122f42945f14", "sha256": "85eec6dcab8d54c28e43f58fb7844d70a1f50d0e7e95e6a4301f056614b1624c" }, "downloads": -1, "filename": "pandoo-0.2.8.tar.gz", "has_sig": false, "md5_digest": "33f55d631f0325e5a18c122f42945f14", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3433514, "upload_time": "2017-09-06T01:45:59", "url": "https://files.pythonhosted.org/packages/10/f0/4feb728b5d60e7d0faac581736c7d96f2beae5a4150502bf3a983032451f/pandoo-0.2.8.tar.gz" } ], "0.2.9": [ { "comment_text": "", "digests": { "md5": "23f857ead6f3b0a857944f9a7d4117c4", "sha256": "4396a872f1de03719a7047193541690f3a17068fa409608c580dc137634d3592" }, "downloads": -1, "filename": "pandoo-0.2.9.tar.gz", "has_sig": false, "md5_digest": "23f857ead6f3b0a857944f9a7d4117c4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3433522, "upload_time": "2017-09-06T02:36:05", "url": "https://files.pythonhosted.org/packages/6d/75/37b23eaab567e85a4803470a253d3b6788ee7d2e30c4ae15bbb8efa3cfc0/pandoo-0.2.9.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "f482087a07d13f360b854e67437767c6", "sha256": "be75ea9838d22507a6dcad913d96dbc4b8c359f030530801d7a3f733962d13ea" }, "downloads": -1, "filename": "pandoo-0.3.3-py3-none-any.whl", "has_sig": false, "md5_digest": "f482087a07d13f360b854e67437767c6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 3554449, "upload_time": "2019-08-15T04:57:25", "url": "https://files.pythonhosted.org/packages/fe/00/c02ebf2ee89f7f647a8c667374b9f8df4d47661717e9906fdf8170062f43/pandoo-0.3.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f4a75e0d97342dd7b03a1ef60a950d0d", "sha256": "8d071e3b146bf08f168df75f1c88487fedb3e38117c94d911fafa538a3a3bdbb" }, "downloads": -1, "filename": "pandoo-0.3.3.tar.gz", "has_sig": false, "md5_digest": "f4a75e0d97342dd7b03a1ef60a950d0d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3436725, "upload_time": "2019-08-15T04:57:28", "url": "https://files.pythonhosted.org/packages/e2/16/da1e9991afabe8c6752338f4b1b3c13758b789f5c9c978e4f1e80e28ac09/pandoo-0.3.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "f482087a07d13f360b854e67437767c6", "sha256": "be75ea9838d22507a6dcad913d96dbc4b8c359f030530801d7a3f733962d13ea" }, "downloads": -1, "filename": "pandoo-0.3.3-py3-none-any.whl", "has_sig": false, "md5_digest": "f482087a07d13f360b854e67437767c6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 3554449, "upload_time": "2019-08-15T04:57:25", "url": "https://files.pythonhosted.org/packages/fe/00/c02ebf2ee89f7f647a8c667374b9f8df4d47661717e9906fdf8170062f43/pandoo-0.3.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f4a75e0d97342dd7b03a1ef60a950d0d", "sha256": "8d071e3b146bf08f168df75f1c88487fedb3e38117c94d911fafa538a3a3bdbb" }, "downloads": -1, "filename": "pandoo-0.3.3.tar.gz", "has_sig": false, "md5_digest": "f4a75e0d97342dd7b03a1ef60a950d0d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3436725, "upload_time": "2019-08-15T04:57:28", "url": "https://files.pythonhosted.org/packages/e2/16/da1e9991afabe8c6752338f4b1b3c13758b789f5c9c978e4f1e80e28ac09/pandoo-0.3.3.tar.gz" } ] }