Each row represents an individual peak identified from the feature binarization analysis (see methods).

get_CORCES2020_scATACseq_celltype_peaks()

Details

Data originally from Corces et al. (bioRxiv), as of May 2020. Specifically: STable6_Features_scATAC-seq_celltype_Peaks

Examples

if (FALSE) {
dat <- readxl::read_excel(
    file.path(
        "~/Desktop/Fine_Mapping/echolocatoR/annotations",
        "Coceres_2020/STable6_Features_scATAC-seq_celltype_Peaks.xlsx"
    ),
    skip = 15
)
CORCES2020_scATACseq_celltype_peaks <- data.table::data.table(dat)

#### piggyback ####
tmp <- file.path(tempdir(), "CORCES2020_scATACseq_celltype_peaks.tsv.gz")
data.table::fwrite(CORCES2020_scATACseq_celltype_peaks, tmp, sep = "\t")
piggyback::pb_upload(
    file = tmp,
    repo = "RajLabMSSM/echoannot"
)
}