{ "info": { "author": "Ignacio Tripodi", "author_email": "ignacio.tripodi@colorado.edu", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: BSD License", "Programming Language :: Python :: 2", "Programming Language :: Python :: 3", "Topic :: Scientific/Engineering :: Bio-Informatics" ], "description": "# DAStk\n\nThe Differential [ATAC-seq](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4374986/) Toolkit (DAStk) is a set of command-line tools to aid analyzing differential ATAC-seq data. By leveraging changes in accessible chromatin, we can detect significant changes in transcription factor (TF) activity. This is a simple but powerful tool for cellular perturbation analysis. In fact, the applications of DAStk are not necessarily limited to ATAC-seq, but can extend to comparing any pair of bedGraphs containing regions of interest, e.g. transcription regulatory elements (TRE) from nascent transcription assays like PRO-seq, or others like ChIP-seq peaks.\n\n\nYou will need the following inputs:\n\n- A pair of files listing peaks of ATAC-seq signal in two biological conditions (e.g. DMSO and drug-treated) in any BedGraph-compatible format (tab-delimited)\n- A set of files listing the putative binding sites across the reference genome of choice, one file per transcription factor motif, also in any BedGraph-like format. These are normally generated from position weight matrices (PWMs) available at TF model databases like [HOCOMOCO](http://hocomoco11.autosome.ru). These files are expected to have a `.bed`, `.BedGraph` or `.txt` extension.\n\n**IMPORTANT: All files mentioned above (ATAC-seq peaks and computed motif sites) MUST be sorted by the same criteria. Different bioinformatics tools use different lexical sorting criteria (e.g. chr10 after chr1, or chr2 after chr1) so please ensure the sorting criteria is uniform.**\n\n### Install\n\nYou can install DAStk using `pip`:\n\n $ pip install DAStk\n\n... or:\n\n $ pip install --upgrade DAStk \n\nThis is the simplest option, and it will also create the executable commands `process_atac` and `differential_md_score`. Alternatively, you can clone this repository by running:\n\n $ git clone https://github.com/Dowell-Lab/DAStk.git\n\n### Required Python libraries (automatically taken care of if installed thru `pip`):\n\n* numpy\n* argparse\n* matplotlib\n* scipy\n* adjustText\n* pandas\n* multiprocessing\n* pybedtools\n* futures\n* scikit-learn\n\nThese scripts feature comprehensive help when called with the `--help` argument. Every argument provides a short and long form (i.e. `-t` or `--threads`). There are normally two steps in a typical workflow:\n\n1. Process the ATAC-seq peak files (process_atac) to calculate the [MD-score statistic](https://genome.cshlp.org/content/28/3/334.short) for each motif provided.\n2. Detect the most statistically significant changes in MD-score (differential_md_score) between both biological conditions (taking into the account the peaks involved), and generate MA and barcode plots.\n\n\n### TL;DR;\n\nProcess each ATAC-seq peak bedGraph file, the genome abbreviations are \"hg38\", \"mm10\", etc:\n\n $ process_atac -e PEAKS_FILENAME_1 -m MOTIF_SITES_DIRECTORY -g GENOME_ABBREVIATION -o OUTPUT_DIRECTORY\n $ process_atac -e PEAKS_FILENAME_2 -m MOTIF_SITES_DIRECTORY -g GENOME_ABBREVIATION -o OUTPUT_DIRECTORY\n\nPerform differential analysis on the calculated motif displacement scores, highlighting the significant motifs at your p-value threshold of choice:\n\n $ differential_md_score -1 MD_OUTPUT_FOR_FILENAME_1 -2 MD_OUTPUT_FOR_FILENAME_2 -p 0.0000001 -m \"DMSO\" -n \"Drug treatment\" -b -o OUTPUT_DIRECTORY\n\nQuestions?\n\n $ process_atac --help\n $ differential_md_score --help\n\n### Generating Custom Plots\n\nIn the latest release (v0.3.0) two additional modules are now included:\n\n* ma_plot\n* barcode_plot\n\nwhich allow you to generate custom MA and Barcode plots using the data produced using the differential_md_score module. The following will provide usage instructions for each of these plotting tools:\n\n $ ma_plot --help\n $ barcode_plot --help\n\nWhile these plots will be generated by default when running the differential_md_score module, it may be useful to adjust the labels, adjust the p-value threshold, compare motifs with non-significant p-values etc. The default plots will generate labels based on your file basenames (everything before the \\_md\\_score.txt extension if you kept the default file names from process_atac). However, to keep plots scaled appropriately, this label is limited to 19 characters. If it is longer, it will be truncated.\n\n\n### Usage examples\n\nUnpack the motif files (see below for how to create your own, instead):\n\n $ mkdir /path/to/grch38_motifs\n $ tar xvfz motifs/HOCOMOCO_v11_p1e-6_grch38.tar.gz --directory /path/to/grch38_motifs\n\nCalculate the MD-scores for the first biological condition:\n\n $ process_atac --threads 8 --atac-peaks /path/to/DMSO/ATAC/peaks/file \\\n --genome hg38 \\\n --motif-path /path/to/directory/containing/motif/files \\\n --output /path/to/output/directory\n\nThe above command generates a file called `BASENAME_md_scores.txt`. It's generally a good idea to use the cell type (or sample number) and a brief condition description (e.g. `k562_DMSO` or `SRR1234123_Metronidazole`) in the file name provided.\n\nWe would then generate the same file, for the other biological condition we are comparing against:\n\n $ process_atac --threads 8 --atac-peaks /path/to/treatment/ATAC/peaks/file \\\n --genome hg38 \\\n --motif-path /path/to/directory/containing/motif/files \\\n --output /path/to/output/directory\n\nThe above generates a file called `BASENAME_md_scores.txt`. Finally:\n\n $ differential_md_score --assay-1 DMSO --assay-2 Treatment --p-value 0.0000001 --barcodes --output /path/to/output/directory\n\nThe above generates a tab-delimited file with all differential MD scores for each motif and their p-values (sorted by p-value), an MA plot that labels the most significant TF activity changes, at a p-value cutoff of 1e-7. Note that better plot-friendly condition names (say, \"DMSO\" and \"Treatment\") can be provided using the `--label-1` and `--label-2` arguments. The plots look like the example below:\n\n![Sample MA plot](./doc_files/sample_MA_plot.png)\n\nThe `-b` flag also generates a \"barcode plot\" of each of these statistically significat motif differences that depicts how close the ATAC-seq peaks were to the (putative TF-binding) motif sites, within a 1500 base-pair radius of the motif center:\n\n![Sample barcode plot](./doc_files/sample_barcode_plot.png)\n\nIf you can take advantage of multiprocessing, you can calculate MD-scores for both conditions simultaneously, assigning several threads to each, then generate the plots once both `*_md_scores.txt` files are ready.\n\nThe columns for the tab-separated output file from `differential_md_score` are:\n\n Motif name , p-value , # peaks in condition 1 , # peaks in condition 2 , MD-score in condition 1 , MD-score in condition 2, fold change\n\n## Additional Arguments \n\n### Genome File\n\nIf your genome is not incuded in the UCSC genome repository, you will instead need to provide a chromosome sizes file in processess_atac. This can be generated using [samtools](http://www.htslib.org/doc/samtools.html) faidx as follows:\n\n $ samtools faidx genome.fa\n $ cut -f1,2 genome.fa.fai > genome.chrom.sizes\n\n\nThis file can then be specified using the -c/--chromosomes argument in process_atac. Scaffold chromosomes will be removed.\n\n### Altering Window Size\n\nWhile we strongly recommend using the default 1500bp radius window in calculating the MD score (and differential MD score), as of v0.3.0 we now have a radius argument (-r/--radius) which will allow you to expand or shrink this window. If changed, the MD score calculation will follow the same principle in that it will be a ratio of motifs hits within the cetner 1/10th of the window relative divided by the number of total motif hits within the window. For example, if the user specifies a radius of 2000bp, there will be a window size of 4000bp, a center of 400bp around the features of interest, and the MD score will be # motif hits within 400bp/ # motifs within 4000bp. Keep in mind that expanding this window may be useful in visualization, but will result in an MD score approaching 0.1 (background).\n\n### Motif Files\n\nFeel free to use the pre-scanned motif files provided, HOCOMOCO_v11_p1e-6_grch38.tar.gz([mirror 1](http://dowell.colorado.edu/pubs/DAStk/motifs/HOCOMOCO_v11_p1e-6_grch38.tar.gz), [mirror 2](https://drive.google.com/file/d/19D1iW9x0mswiFLoj6hrDFjVfhYmAbLqG/view?usp=sharing)), HOCOMOCO_v11_p1e-6_hg19.tar.gz([mirror 1](http://dowell.colorado.edu/pubs/DAStk/motifs/HOCOMOCO_v11_p1e-6_hg19.tar.gz), [mirror 2](https://drive.google.com/file/d/10_0kuPQbswmhoazjvEJ1KfGRJDuJ-O0y/view?usp=sharing)) and HOCOMOCO_v11_p1e-6_mm10.tar.gz ([mirror 1](http://dowell.colorado.edu/pubs/DAStk/motifs/HOCOMOCO_v11_p1e-6_mm10.tar.gz), [mirror 2](https://drive.google.com/file/d/1qCirs0AfHzFwnbXMEa8vTd06tEiyE42Z/view?usp=sharing) for the `GRCh38/hg38`, `hg19` and `mm10` reference genomes, respectively. They have been generated from HOCOMOCO's v11 mononucleotide model, background-corrected for each reference genome. To generate your own `bed` files for each motif from this or any other source, you can use FIMO in combination with the downloaded `.meme` files from your TF database of choice. For example, if using HOCOMOCO, you can create the motif file for TP53 using their mononucleotide model with a p-value threshold of 0.000001 by:\n\n $ fimo -max-stored-scores 10000000 --thresh 1e-6 -oc /path/to/output/directory -motif /path/to/motif/file \\\n /path/to/HOCOMOCOv11_HUMAN_mono_meme_format.meme /path/to/whole_genome.fa\n\nPlease refer to the complete [FIMO](http://meme-suite.org/doc/fimo.html?man_type=web) documentation for any questions.\n\n-----\n\n### Citation\n\nPlease cite DAStk if you have used it in your research! \n\n*Tripodi, I.J.; Allen, M.A.; Dowell, R.D.\tDetecting Differential Transcription Factor Activity from ATAC-Seq Data. Molecules 2018, 23, 1136.* \n\nIf you have used the provided scanned motif regions from HOCOMOCO, please cite them as well:\n\n*Kulakovskiy, I.V., Vorontsov, I.E., Yevshin, I.S., Sharipov, R.N., Fedorova, A.D., Rumynskiy, E.I., Medvedeva, Y.A., Magana-Mora, A., Bajic, V.B., Papatsenko, D.A., et al. (2018). HOCOMOCO: towards a complete collection of transcription factor binding models for human and mouse via large-scale ChIP-Seq analysis. Nucleic Acids Res 46, D252\u2013D259.*\n\n\nFor any questions or bug reports, please use the Issue Tracker or email us: \n\n*Ignacio Tripodi (ignacio.tripodi at colorado.edu)* \n*Computer Science Department, BioFrontiers Institute* \n*University of Colorado, Boulder, USA*\n\n*Margaret Gruca (margaret.gruca at colorado.edu)* \n*BioFrontiers Institute* \n*University of Colorado, Boulder, USA*\n\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/Dowell-Lab/DAStk", "keywords": "bioinformatics genomics chromatin ATAC-seq motif transcription_factor TF", "license": "BSD", "maintainer": "", "maintainer_email": "", "name": "DAStk", "package_url": "https://pypi.org/project/DAStk/", "platform": "", "project_url": "https://pypi.org/project/DAStk/", "project_urls": { "Bug Reports": "https://github.com/Dowell-Lab/DAStk/issues", "Homepage": "https://github.com/Dowell-Lab/DAStk", "Human Motif Sites (GRCh38)": "http://dowell.colorado.edu/pubs/DAStk/motifs/HOCOMOCO_v11_p1e-6_grch38.tar.gz", "Human Motif Sites (hg19)": "http://dowell.colorado.edu/pubs/DAStk/motifs/HOCOMOCO_v11_p1e-6_hg19.tar.gz", "Mouse Motif Sites (mm10)": "http://dowell.colorado.edu/pubs/DAStk/motifs/HOCOMOCO_v11_p1e-6_mm10.tar.gz", "Source": "https://github.com/Dowell-Lab/DAStk" }, "release_url": "https://pypi.org/project/DAStk/0.3.1/", "requires_dist": [ "argparse", "datetime", "numpy", "matplotlib", "adjustText", "scipy", "pandas", "pybedtools", "futures", "scikit-learn" ], "requires_python": ">=2.7", "summary": "Differential ATAC-seq toolkit", "version": "0.3.1" }, "last_serial": 5520243, "releases": { "0.1.1": [ { "comment_text": "", "digests": { "md5": "6899ed0a8bc29ae976e06ccbd6491c9a", "sha256": "fe2a7db5e29f1a5a581afa38b27d8b533a013cecda5fe3d97e36e64ebaf46e0f" }, "downloads": -1, "filename": "DAStk-0.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6899ed0a8bc29ae976e06ccbd6491c9a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 12097, "upload_time": "2018-04-24T05:44:33", "url": "https://files.pythonhosted.org/packages/62/81/7a817e4210ee4989e0f3187e1f17be420d5e2fb7644713f901c854cb63d3/DAStk-0.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "169329e0397df36b0e7d36f121ec164e", "sha256": "6611e9ed37992257cb67b47b9b982909111f3174664bc7950e733d74aaf8a3ed" }, "downloads": -1, "filename": "DAStk-0.1.1.tar.gz", "has_sig": false, "md5_digest": "169329e0397df36b0e7d36f121ec164e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 10252, "upload_time": "2018-04-24T05:44:34", "url": "https://files.pythonhosted.org/packages/8b/fe/2a4d697ee19a8d2b3136e5ccded3324711ede31b0b04a1afc238dc3814f2/DAStk-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "c48f4baef32eba32b6900d257f6a2fbf", "sha256": "0dffbc3ca9deb5b5adf8ce5748a635682b3dee6ad5f76b545c25e22916c16a2b" }, "downloads": -1, "filename": "DAStk-0.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c48f4baef32eba32b6900d257f6a2fbf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 12494, "upload_time": "2018-05-15T16:43:31", "url": "https://files.pythonhosted.org/packages/80/e9/e5bd58c67c256966902bdfcc9e8ae607103a23c3d20e5de8986f4045ecb9/DAStk-0.1.2-py2.py3-none-any.whl" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "bcbd1e1221a5591dd44cfd4f535f6190", "sha256": "4cab4d5e6ea8ed7a2e40071cb409c81bd8bf5d11bc6ffc3b3bb0a9a10a67313b" }, "downloads": -1, "filename": "DAStk-0.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bcbd1e1221a5591dd44cfd4f535f6190", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 12489, "upload_time": "2018-05-18T20:11:13", "url": "https://files.pythonhosted.org/packages/36/6d/d1f957a6ff42dba9e14eb96f99c1eb51817874dfa863a4a9a099c23f4bab/DAStk-0.1.3-py2.py3-none-any.whl" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "150f7be6b04084a1a2eba9dd4b87e22f", "sha256": "4992c4cb3e44b900786b46fc60f752672e44ed8699fe41cac9c84312a71d35bb" }, "downloads": -1, "filename": "DAStk-0.1.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "150f7be6b04084a1a2eba9dd4b87e22f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 12497, "upload_time": "2018-05-20T05:52:20", "url": "https://files.pythonhosted.org/packages/2d/54/fb76f23b88ac30a17d566b543c11e6407f1eddb49479021b3356d054fc96/DAStk-0.1.4-py2.py3-none-any.whl" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "05a0b0337f521f8d29ff77ae361c4980", "sha256": "4eb1d22f68052ed44df74127dee76cd40687b80bde23ba8c8672671ba979d289" }, "downloads": -1, "filename": "DAStk-0.1.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "05a0b0337f521f8d29ff77ae361c4980", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 12568, "upload_time": "2018-05-25T02:41:37", "url": "https://files.pythonhosted.org/packages/6c/76/0c483fcc1894f162f8516283ffea15a326fe7d39488b2f7ba658c4c49116/DAStk-0.1.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9e5d9b7c1d26f5a9dc273cbfc47c344c", "sha256": "d57f46d77a7054b0f89f194b330f2235cf382392780098dfeed7ee88a00492a5" }, "downloads": -1, "filename": "DAStk-0.1.5.tar.gz", "has_sig": false, "md5_digest": "9e5d9b7c1d26f5a9dc273cbfc47c344c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 10708, "upload_time": "2018-06-19T05:45:15", "url": "https://files.pythonhosted.org/packages/a8/dc/04d392eac0e0b3f50fad40441cd100ac876bdd7641a2ca209665d4060055/DAStk-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "fc920db471d6257001ccd4eab49699ba", "sha256": "09c863c444e7dad8e6900b10cb6e2dbc4edd956144bf9ab555783b9cc8970647" }, "downloads": -1, "filename": "DAStk-0.1.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fc920db471d6257001ccd4eab49699ba", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 12570, "upload_time": "2018-06-23T21:36:55", "url": "https://files.pythonhosted.org/packages/21/58/bab4c52cad3d76ce7e357f8208f99f167daf25687b754b582b50e4ccdc41/DAStk-0.1.6-py2.py3-none-any.whl" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "1c47db073b9ee54b1dfc22cd3be2ac7f", "sha256": "67cd95959c291b591544654ba3b3d0995bbf80e23d2358119ab137cbce76e29f" }, "downloads": -1, "filename": "DAStk-0.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1c47db073b9ee54b1dfc22cd3be2ac7f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 14187, "upload_time": "2019-03-15T06:42:31", "url": "https://files.pythonhosted.org/packages/1a/00/cc20b9ef0c60c9d71ea5629bc7622db4ad893b772690868b977101ea1252/DAStk-0.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a4bcade68257eb2e77ca25bcbce0e0ae", "sha256": "7997586561c670fdeaf9bac89155e017ad1d486b517d0d52755e160ab4068871" }, "downloads": -1, "filename": "DAStk-0.2.0.tar.gz", "has_sig": false, "md5_digest": "a4bcade68257eb2e77ca25bcbce0e0ae", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 13136, "upload_time": "2019-03-15T06:42:33", "url": "https://files.pythonhosted.org/packages/87/a1/7ad80c2e0c7f24a131c5608af2148c39f49b5354e2b5ce7e8cca76471a1b/DAStk-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "998eae2fe182f6c5b285e32b374e5aad", "sha256": "c7b0420393602c6b79c71f78b6f361273c554ad524eb9a83ebf252ef698d6c66" }, "downloads": -1, "filename": "DAStk-0.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "998eae2fe182f6c5b285e32b374e5aad", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 20101, "upload_time": "2019-07-04T05:09:34", "url": "https://files.pythonhosted.org/packages/79/fe/7222cef48a7b5317cefd51fecbae0644da6b56f3d4e8b501e2a12d8b754d/DAStk-0.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "971b6b79fb093ab8e87c705e4c1a4e5a", "sha256": "b845a17c7604fa66ef26b0d4ffd5d3badada56e18a4f88e7fc0ec34b068c337d" }, "downloads": -1, "filename": "DAStk-0.2.1.tar.gz", "has_sig": false, "md5_digest": "971b6b79fb093ab8e87c705e4c1a4e5a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 16348, "upload_time": "2019-07-04T05:09:35", "url": "https://files.pythonhosted.org/packages/27/b2/55ad8793ed79c37b553d8ae55f1109b3e96d879cd1005ff445fe865abe09/DAStk-0.2.1.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "a89238d3bd77d9cd1c86b5c32f9510ba", "sha256": "24139326396346dc305f8f7770ed5c53f3a6c241f418d42cd384f21e184b252e" }, "downloads": -1, "filename": "DAStk-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a89238d3bd77d9cd1c86b5c32f9510ba", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 20101, "upload_time": "2019-07-06T00:41:48", "url": "https://files.pythonhosted.org/packages/5e/33/c42cb5fe7b37d181e64a4228d97198606739079d068fa6f18e081bee8de8/DAStk-0.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dd5fce16137fb46f50bdcec7a63e96f6", "sha256": "8f9866b358dc315f8561494c5df37d113ee0eecdb0dcb77ea1e272788e469ecc" }, "downloads": -1, "filename": "DAStk-0.3.0.tar.gz", "has_sig": false, "md5_digest": "dd5fce16137fb46f50bdcec7a63e96f6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 16347, "upload_time": "2019-07-06T00:41:50", "url": "https://files.pythonhosted.org/packages/3e/f3/ecf5a00ba3260cb93684c897d558c12d4f3124ef9596ec92ca2b97efd8dc/DAStk-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "2ca59a08582851f992c8366ae9cc4b94", "sha256": "1eee32c0dcfb319b6f192db0b9323899fd392aa773dd537e1db1b72b0042cb32" }, "downloads": -1, "filename": "DAStk-0.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2ca59a08582851f992c8366ae9cc4b94", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 20102, "upload_time": "2019-07-11T21:10:56", "url": "https://files.pythonhosted.org/packages/07/77/974fe838cbff87be9ca100e51e0e4412b7abb97af9c9713589e96b2091cf/DAStk-0.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9cffac528e1d5efc2c4c34559e201f7b", "sha256": "e849a5332e38b658227ee01f6a141b23e9903fae89e3e09ec75fa55122ac24c2" }, "downloads": -1, "filename": "DAStk-0.3.1.tar.gz", "has_sig": false, "md5_digest": "9cffac528e1d5efc2c4c34559e201f7b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 16343, "upload_time": "2019-07-11T21:10:59", "url": "https://files.pythonhosted.org/packages/af/92/258c90d752176ca8606d45157ca7ff1aef9d1dd2681f1425ccfdc29f56f7/DAStk-0.3.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "2ca59a08582851f992c8366ae9cc4b94", "sha256": "1eee32c0dcfb319b6f192db0b9323899fd392aa773dd537e1db1b72b0042cb32" }, "downloads": -1, "filename": "DAStk-0.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2ca59a08582851f992c8366ae9cc4b94", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7", "size": 20102, "upload_time": "2019-07-11T21:10:56", "url": "https://files.pythonhosted.org/packages/07/77/974fe838cbff87be9ca100e51e0e4412b7abb97af9c9713589e96b2091cf/DAStk-0.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9cffac528e1d5efc2c4c34559e201f7b", "sha256": "e849a5332e38b658227ee01f6a141b23e9903fae89e3e09ec75fa55122ac24c2" }, "downloads": -1, "filename": "DAStk-0.3.1.tar.gz", "has_sig": false, "md5_digest": "9cffac528e1d5efc2c4c34559e201f7b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7", "size": 16343, "upload_time": "2019-07-11T21:10:59", "url": "https://files.pythonhosted.org/packages/af/92/258c90d752176ca8606d45157ca7ff1aef9d1dd2681f1425ccfdc29f56f7/DAStk-0.3.1.tar.gz" } ] }