Name Mode Size
..
add_frag_info.R 100644 2 kb
bam_to_bins.R 100644 2 kb
bin_pmol.R 100644 1 kb
convertPairedGRtoGR.R 100644 0 kb
covg_to_df.R 100644 2 kb
data.R 100644 7 kb
find_spike_contigs.R 100644 2 kb
generate_spike_fasta.R 100644 3 kb
generics.R 100644 1 kb
get_base_name.R 100644 1 kb
get_binned_coverage.R 100644 1 kb
get_merged_gr.R 100644 2 kb
get_spike_depth.R 100644 2 kb
get_spiked_coverage.R 100644 1 kb
kmax.R 100644 1 kb
kmers.R 100644 1 kb
methylation_specificity.R 100644 1 kb
model_bam_standards.R 100644 1 kb
model_glm_pmol.R 100644 2 kb
parse_spike_UMI.R 100644 1 kb
predict_pmol.R 100644 4 kb
process_spikes.R 100644 2 kb
read_bedpe.R 100644 4 kb
rename_spike_seqlevels.R 100644 1 kb
rename_spikes.R 100644 1 kb
scan_genomic_bedpe.R 100644 2 kb
scan_genomic_contigs.R 100644 4 kb
scan_methylation_specificity.R 100644 1 kb
scan_spike_bedpe.R 100644 1 kb
scan_spike_contigs.R 100644 3 kb
scan_spike_counts.R 100644 1 kb
scan_spiked_bam.R 100644 5 kb
seqinfo_from_header.R 100644 3 kb
spike_bland_altman_plot.R 100644 2 kb
spike_counts.R 100644 3 kb
tile_bins.R 100644 1 kb
README.md
[![Spiky](vignettes/spiky-small.png)](https://github.com/trichelab/spiky) # spiky [![Build Status](https://travis-ci.org/trichelab/spiky.png?branch=master)](https://travis-ci.org/trichelab/spiky) [![codecov](https://codecov.io/gh/trichelab/spiky/branch/master/graph/badge.svg)](https://codecov.io/gh/trichelab/spiky) # Spike-ins for everyone Analysis of cfMeDIP-seq data with spike-in control sequences. For more information, see Wilson, et. al, Sensitive and reproducible cell-free methylome quantification with synthetic spike-in controls, Cell Reports Methods, 2022. (https://www.sciencedirect.com/science/article/pii/S266723752200176X?via%3Dihub) Please note that `spiky` strongly suggests a recent version of R (4.0 or newer; 3.6 or newer is required). This restriction may be removed if our dependencies can tolerate it. ## Installing To install this package, start R (version "3.6" or later) and enter: ``` if (!requireNamespace("BiocManager", quietly = TRUE)) { install.packages("BiocManager") } BiocManager::install("trichelab/spiky") ``` ## For developers The repository includes a Makefile to facilitate some common tasks. ### Running tests `$ make test`. Requires the [testthat](https://github.com/hadley/testthat) package. You can also specify a specific test file or files to run by adding a "file=" argument, like `$ make test file=logging`. `test_package` will do a regular-expression pattern match within the file names. See its documentation in the `testthat` package. ### Updating documentation `$ make doc`. Requires the [roxygen2](https://github.com/klutometis/roxygen) package.