Name Mode Size
.github 040000
R 040000
analysis 040000
dev 040000
inst 040000
man 040000
pkgdown 040000
tests 040000
vignettes 040000
.Rbuildignore 100644 0 kb
.gitignore 100644 0 kb
DESCRIPTION 100644 2 kb
INSTALL 100644 1 kb
NAMESPACE 100644 1 kb
NEWS.md 100644 1 kb
README.Rmd 100644 9 kb
README.md 100644 21 kb
codecov.yml 100644 0 kb
README.md
<!-- README.md is generated from README.Rmd. Please edit that file --> # megadepth <!-- badges: start --> [![Lifecycle: stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html#stable) [![Bioc release status](http://www.bioconductor.org/shields/build/release/bioc/megadepth.svg)](https://bioconductor.org/checkResults/release/bioc-LATEST/megadepth) [![Bioc devel status](http://www.bioconductor.org/shields/build/devel/bioc/megadepth.svg)](https://bioconductor.org/checkResults/devel/bioc-LATEST/megadepth) [![Bioc downloads rank](https://bioconductor.org/shields/downloads/release/megadepth.svg)](http://bioconductor.org/packages/stats/bioc/megadepth/) [![Bioc support](https://bioconductor.org/shields/posts/megadepth.svg)](https://support.bioconductor.org/tag/megadepth) [![Bioc history](https://bioconductor.org/shields/years-in-bioc/megadepth.svg)](https://bioconductor.org/packages/release/bioc/html/megadepth.html#since) [![Bioc last commit](https://bioconductor.org/shields/lastcommit/devel/bioc/megadepth.svg)](http://bioconductor.org/checkResults/devel/bioc-LATEST/megadepth/) [![Bioc dependencies](https://bioconductor.org/shields/dependencies/release/megadepth.svg)](https://bioconductor.org/packages/release/bioc/html/megadepth.html#since) [![Codecov test coverage](https://codecov.io/gh/LieberInstitute/megadepth/branch/devel/graph/badge.svg)](https://codecov.io/gh/LieberInstitute/megadepth?branch=devel) [![R build status](https://github.com/LieberInstitute/megadepth/workflows/R-CMD-check-bioc/badge.svg)](https://github.com/LieberInstitute/megadepth/actions) [![GitHub issues](https://img.shields.io/github/issues/LieberInstitute/megadepth)](https://github.com/LieberInstitute/megadepth/issues) [![GitHub pulls](https://img.shields.io/github/issues-pr/LieberInstitute/megadepth)](https://github.com/LieberInstitute/megadepth/pulls) <!-- badges: end --> The goal of `megadepth` is to provide an R interface to the command line tool [Megadepth](https://github.com/ChristopherWilks/megadepth) for BigWig and BAM related utilities created by [Christopher Wilks](https://twitter.com/chrisnwilks). This R package enables **fast** processing of BigWig files on downstream packages such as [dasper](https://bioconductor.org/packages/dasper) and [recount3](https://bioconductor.org/packages/recount3). The [Megadepth](https://github.com/ChristopherWilks/megadepth) software also provides utilities for processing BAM files and extracting coverage information from them. Here is an illustration on how fast `megadepth` is compared to other tools for processing local and remote BigWig files. <a href="https://github.com/LieberInstitute/megadepth/tree/devel/analysis"><img src="https://raw.githubusercontent.com/LieberInstitute/megadepth/devel/analysis/md_rt_pybw_runtime.png" width="800px" ></a> Throughout the documentation we use a capital `M` to refer to the software by Christopher Wilks and a lower case `m` to refer to this R/Bioconductor package. ## Installation instructions Get the latest stable `R` release from [CRAN](http://cran.r-project.org/). Then install `megadepth` from [Bioconductor](http://bioconductor.org/) using the following code: ``` r if (!requireNamespace("BiocManager", quietly = TRUE)) { install.packages("BiocManager") } BiocManager::install("megadepth") ``` And the development version from [GitHub](https://github.com/) with: ``` r BiocManager::install("LieberInstitute/megadepth") ``` ## Example In the following example, we install [Megadepth](https://github.com/ChristopherWilks/megadepth) with `install_megadepth()`, which downloads a binary for your OS (Linux, Windows or macOS). We can then use with an example BigWig file to compute the coverage at a set of regions. ``` r ## Load the R package library("megadepth") ## Install Megadepth's pre-compiled binary on your system install_megadepth() #> It seems megadepth has been installed. Use force = TRUE to reinstall or upgrade. ## Next, we locate the example BigWig and annotation files example_bw <- system.file("tests", "test.bam.all.bw", package = "megadepth", mustWork = TRUE ) annotation_file <- system.file("tests", "testbw2.bed", package = "megadepth", mustWork = TRUE ) ## We can then use megadepth to compute the coverage bw_cov <- get_coverage(example_bw, op = "mean", annotation = annotation_file) bw_cov #> GRanges object with 4 ranges and 1 metadata column: #> seqnames ranges strand | score #> <Rle> <IRanges> <Rle> | <numeric> #> [1] chr10 0-10 * | 0.00 #> [2] chr10 8756697-8756762 * | 15.85 #> [3] chr10 4359156-4359188 * | 3.00 #> [4] GL000219.1 168500-168620 * | 1.26 #> ------- #> seqinfo: 2 sequences from an unspecified genome; no seqlengths ``` ## Full set of utilities [Megadepth](https://github.com/ChristopherWilks/megadepth) is very powerful and can do a lot of different things. The R/Bioconductor package provides two functions for interfacing with [Megadepth](https://github.com/ChristopherWilks/megadepth), `megadepth_cmd()` and `megadepth_shell()`. For the first one, `megadepth_cmd()`, you need to know the actual command syntax you want to use and format it accordingly. If you are more comfortable with R functions, `megadepth_shell()` uses *[cmdfun](https://CRAN.R-project.org/package=cmdfun)* to power this interface and capture the standard output stream into R. To make it easier to use, `megadepth` includes functions that simplify the number of arguments, read in the output files, and converts them into R/Bioconductor friendly objects, such as `get_coverage()` illustrated above. We hope that you’ll find `megadepth` and [Megadepth](https://github.com/ChristopherWilks/megadepth) useful for your work. If you are interested in checking how **fast** `megadepth` is, check out the [**speed analysis**](https://github.com/LieberInstitute/megadepth/tree/devel/analysis) comparison against other tools. Note that the size of the files used and the number of genomic regions queried will affect the speed comparisons. ``` r ## R-like interface ## that captures the standard output into R head(megadepth_shell(help = TRUE)) #> [1] "megadepth 1.2.0" "" #> [3] "BAM and BigWig utility." "" #> [5] "Usage:" " megadepth <bam|bw|-> [options]" ## Command-like interface megadepth_cmd("--help") ``` #> megadepth 1.2.0 #> #> BAM and BigWig utility. #> #> Usage: #> megadepth <bam|bw|-> [options] #> #> Options: #> -h --help Show this screen. #> --version Show version. #> --threads # of threads to do: BAM decompression OR compute sums over multiple BigWigs in parallel #> if the 2nd is intended then a TXT file listing the paths to the BigWigs to process in parallel #> should be passed in as the main input file instead of a single BigWig file (EXPERIMENTAL). #> --prefix String to use to prefix all output files. #> --no-auc-stdout Force all AUC(s) to be written to <prefix>.auc.tsv rather than STDOUT #> --no-annotation-stdout Force summarized annotation regions to be written to <prefix>.annotation.tsv rather than STDOUT #> --no-coverage-stdout Force covered regions to be written to <prefix>.coverage.tsv rather than STDOUT #> --keep-order Output annotation coverage in the order chromosomes appear in the BAM/BigWig file #> The default is to output annotation coverage in the order chromosomes appear in the annotation BED file. #> This is only applicable if --annotation is used for either BAM or BigWig input. #> #> BigWig Input: #> Extract regions and their counts from a BigWig outputting BED format if a BigWig file is detected as input (exclusive of the other BAM modes): #> Extracts all reads from the passed in BigWig and output as BED format. #> This will also report the AUC over the annotated regions to STDOUT. #> If only the name of the BigWig file is passed in with no other args, it will *only* report total AUC to STDOUT. #> --annotation <bed> Only output the regions in this BED applying the argument to --op to them. #> --op <sum[default], mean, min, max> Statistic to run on the intervals provided by --annotation #> --sums-only Discard coordinates from output of summarized regions #> --distance (2200[default]) Number of base pairs between end of last annotation and start of new to consider in the same BigWig query window (a form of binning) for performance. This determines the number of times the BigWig index is queried. #> --unsorted (off[default]) There's a performance improvement *if* BED file passed to --annotation is 1) sorted by sort -k1,1 -k2,2n (default is to assume sorted and check for unsorted positions, if unsorted positions are found, will fall back to slower version) #> --bwbuffer <1GB[default]> Size of buffer for reading BigWig files, critical to use a large value (~1GB) for remote BigWigs. #> Default setting should be fine for most uses, but raise if very slow on a remote BigWig. #> #> #> BAM Input: #> Extract basic junction information from the BAM, including co-occurrence #> If only the name of the BAM file is passed in with no other args, it will *only* report total AUC to STDOUT. #> --fasta Path to the reference FASTA file if a CRAM file is passed as the input file (ignored otherwise) #> If not passed, references will be downloaded using the CRAM header. #> --junctions Extract co-occurring jx coordinates, strand, and anchor length, per read #> writes to a TSV file <prefix>.jxs.tsv #> --all-junctions Extract all jx coordinates, strand, and anchor length, per read for any jx #> writes to a TSV file <prefix>.all_jxs.tsv #> --longreads Modifies certain buffer sizes to accommodate longer reads such as PB/Oxford. #> --filter-in Integer bitmask, any bits of which alignments need to have to be kept (similar to samtools view -f). #> --filter-out Integer bitmask, any bits of which alignments need to have to be skipped (similar to samtools view -F). #> --add-chr-prefix Adds "chr" prefix to relevant chromosomes for BAMs w/o it, pass "human" or "mouse". #> Only works for human/mouse references (default: off). #> #> Non-reference summaries: #> --alts Print differing from ref per-base coverages #> Writes to a CSV file <prefix>.alts.tsv #> --include-softclip Print a record to the alts CSV for soft-clipped bases #> Writes total counts to a separate TSV file <prefix>.softclip.tsv #> --only-polya If --include-softclip, only print softclips which are mostly A's or T's #> --include-n Print mismatch records when mismatched read base is N #> --print-qual Print quality values for mismatched bases #> --delta Print POS field as +/- delta from previous #> --require-mdz Quit with error unless MD:Z field exists everywhere it's #> expected #> --head Print sequence names and lengths in SAM/BAM header #> #> Coverage and quantification: #> --coverage Print per-base coverage (slow but totally worth it) #> --auc Print per-base area-under-coverage, will generate it for the genome #> and for the annotation if --annotation is also passed in #> Defaults to STDOUT, unless other params are passed in as well, then #> if writes to a TSV file <prefix>.auc.tsv #> --bigwig Output coverage as BigWig file(s). Writes to <prefix>.bw #> (also <prefix>.unique.bw when --min-unique-qual is specified). #> Requires libBigWig. #> --annotation <BED|window_size> Path to BED file containing list of regions to sum coverage over #> (tab-delimited: chrm,start,end). Or this can specify a contiguous region size in bp. #> --op <sum[default], mean> Statistic to run on the intervals provided by --annotation #> --no-index If using --annotation, skip the use of the BAM index (BAI) for pulling out regions. #> Setting this can be faster if doing windows across the whole genome. #> This will be turned on automatically if a window size is passed to --annotation. #> --min-unique-qual <int> #> Output second bigWig consisting built only from alignments #> with at least this mapping quality. --bigwig must be specified. #> Also produces second set of annotation sums based on this coverage #> if --annotation is enabled #> --double-count Allow overlapping ends of PE read to count twice toward #> coverage #> --num-bases Report total sum of bases in alignments processed (that pass filters) #> --gzip Turns on gzipping of coverage output (no effect if --bigwig is passsed), #> this will also enable --no-coverage-stdout. #> #> Other outputs: #> --read-ends Print counts of read starts/ends, if --min-unique-qual is set #> then only the alignments that pass that filter will be counted here #> Writes to 2 TSV files: <prefix>.starts.tsv, <prefix>.ends.tsv #> --frag-dist Print fragment length distribution across the genome #> Writes to a TSV file <prefix>.frags.tsv #> --echo-sam Print a SAM record for each aligned read #> --ends Report end coordinate for each read (useful for debugging) #> --test-polya Lower Poly-A filter minimums for testing (only useful for debugging/testing) #> #> ## Citation Below is the citation output from using `citation('megadepth')` in R. Please run this yourself to check for any updates on how to cite **megadepth**. ``` r print(citation("megadepth"), bibtex = TRUE) #> To cite package 'megadepth' in publications use: #> #> Zhang D, Collado-Torres L (2023). _megadepth: BigWig and BAM related #> utilities_. doi:10.18129/B9.bioc.megadepth #> <https://doi.org/10.18129/B9.bioc.megadepth>, #> https://github.com/LieberInstitute/megadepth - R package version #> 1.11.0, <http://www.bioconductor.org/packages/megadepth>. #> #> A BibTeX entry for LaTeX users is #> #> @Manual{, #> title = {megadepth: BigWig and BAM related utilities}, #> author = {David Zhang and Leonardo Collado-Torres}, #> year = {2023}, #> url = {http://www.bioconductor.org/packages/megadepth}, #> note = {https://github.com/LieberInstitute/megadepth - R package version 1.11.0}, #> doi = {10.18129/B9.bioc.megadepth}, #> } #> #> Wilks C, Ahmed O, Baker DN, Zhang D, Collado-Torres L, Langmead B #> (2020). "Megadepth: efficient coverage quantification for BigWigs and #> BAMs." _bioRxiv_. doi:10.1101/2020.12.17.423317 #> <https://doi.org/10.1101/2020.12.17.423317>, #> <https://www.biorxiv.org/content/10.1101/2020.12.17.423317v1>. #> #> A BibTeX entry for LaTeX users is #> #> @Article{, #> title = {Megadepth: efficient coverage quantification for BigWigs and BAMs}, #> author = {Christopher Wilks and Omar Ahmed and Daniel N. Baker and David Zhang and Leonardo Collado-Torres and Ben Langmead}, #> year = {2020}, #> journal = {bioRxiv}, #> doi = {https://doi.org/10.1101/2020.12.17.423317}, #> url = {https://www.biorxiv.org/content/10.1101/2020.12.17.423317v1}, #> } ``` Please note that the `megadepth` was only made possible thanks to many other R and bioinformatics software authors, which are cited either in the vignettes and/or the paper(s) describing this package. ## Code of Conduct Please note that the `megadepth` project is released with a [Contributor Code of Conduct](https://contributor-covenant.org/version/2/0/CODE_OF_CONDUCT.html). By contributing to this project, you agree to abide by its terms. ## Development tools - Continuous code testing is possible thanks to [GitHub actions](https://www.tidyverse.org/blog/2020/04/usethis-1-6-0/) through *[usethis](https://CRAN.R-project.org/package=usethis)*, *[remotes](https://CRAN.R-project.org/package=remotes)*, *[sysreqs](https://github.com/r-hub/sysreqs)* and *[rcmdcheck](https://CRAN.R-project.org/package=rcmdcheck)* customized to use [Bioconductor’s docker containers](https://www.bioconductor.org/help/docker/) and *[BiocCheck](https://bioconductor.org/packages/3.17/BiocCheck)*. - Code coverage assessment is possible thanks to [codecov](https://codecov.io/gh) and *[covr](https://CRAN.R-project.org/package=covr)*. - The [documentation website](http://LieberInstitute.github.io/megadepth) is automatically updated thanks to *[pkgdown](https://CRAN.R-project.org/package=pkgdown)*. - The code is styled automatically thanks to *[styler](https://CRAN.R-project.org/package=styler)*. - The documentation is formatted thanks to *[devtools](https://CRAN.R-project.org/package=devtools)* and *[roxygen2](https://CRAN.R-project.org/package=roxygen2)*. For more details, check the `dev` directory. This package was developed using *[biocthis](https://bioconductor.org/packages/3.17/biocthis)*. ## `ReCount` project The **main documentation website** for all the `recount3`-related projects is available at [**recount.bio**](https://LieberInstitute/github.io/recount3-docs). Please check that website for more information about how this R/Bioconductor package and other tools are related to each other. ## Teams involved *[megadepth](https://bioconductor.org/packages/3.17/megadepth)* was made possible to [David Zhang](https://twitter.com/dyzhang32), the author of *[dasper](https://bioconductor.org/packages/3.17/dasper)*, and a member of the [Mina Ryten](https://snca.atica.um.es/)’s lab at UCL. The `ReCount` family involves the following teams: - [Ben Langmead’s lab](http://www.langmead-lab.org/) at JHU Computer Science - [Kasper Daniel Hansen’s lab](https://www.hansenlab.org/) at JHBSPH Biostatistics Department - [Leonardo Collado-Torres](http://lcolladotor.github.io/) and [Andrew E. Jaffe](http://aejaffe.com/) from [LIBD](https://www.libd.org/) - [Abhinav Nellore’s lab](http://nellore.bio/) at OHSU - [Jeff Leek’s lab](http://jtleek.com/) at JHBSPH Biostatistics Deparment - Data hosted by [SciServer from IDIES at JHU](https://www.sciserver.org/) | | | | | |-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------| | <a href="http://www.langmead-lab.org/"><img src="http://www.langmead-lab.org/wp-content/uploads/2014/01/Screen-Shot-2014-02-02-at-5.20.13-PM-1024x199.png" width="250px"></a> | <a href="https://www.libd.org/"><img src="http://lcolladotor.github.io/img/LIBD_logo.jpg" width="250px"></a> | <a href="http://nellore.bio/"><img src="https://seekvectorlogo.net/wp-content/uploads/2018/08/oregon-health-science-university-ohsu-vector-logo.png" width="250px"></a> | <a href="https://www.sciserver.org/"><img src="https://skyserver.sdss.org/dr14/en/images/sciserver_logo_inverted_vertical.png" width="250px"></a> |