Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Authors@R: person(
comment = c(ORCID = "0000-0003-2641-0916"))
License: Artistic-2.0
Encoding: UTF-8
Version: 0.99.0
Version: 0.99.2
Depends: R (>= 4.3.0)
Imports: AnnotationHub, GenomicRanges, utils
Suggests: knitr, rmarkdown, testthat (>= 3.0.0), BiocStyle
Expand Down
90 changes: 90 additions & 0 deletions inst/scripts/make-metadata.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
# Script to generate metadata for methylTFRAnnotationMm10
# Run this from the root of your package directory

meta <- data.frame(
Title = c(
"altius_motif_gcfreq.rds",
"altius_tf_bindsites.rds",
"cisbpv2_motif_gcfreq.rds",
"cisbpv2_tf_bindsites.rds",
"genomewide_GC_mm10.rds",
"jaspar2020_motif_gcfreq.rds",
"jaspar2020_tf_bindsites.rds"
),
Description = c(
"GC bin frequency tables for ALTIUS motifs on mm10. One five-row matrix per motif giving the number of binding sites falling in each genome-wide GC quintile, used by methylTFR to compute the expected methylation a motif would show from GC content alone.",
"Genome-wide ALTIUS transcription factor binding site predictions for mm10, one GRanges per motif, each range extended by 200 bases on either side of the motif match so that methylTFR can read methylation across the footprint window.",
"GC bin frequency tables for CISBPV2 motifs on mm10. One five-row matrix per motif giving the number of binding sites falling in each genome-wide GC quintile, used by methylTFR to compute the expected methylation a motif would show from GC content alone.",
"Genome-wide CISBPV2 transcription factor binding site predictions for mm10, one GRanges per motif, each range extended by 200 bases on either side of the motif match so that methylTFR can read methylation across the footprint window.",
"Genome-wide GC content distribution for mm10. A GRanges of tiled windows carrying GC_bias and a GC_bin assignment into genome-wide quintiles. methylTFR uses it to assign each methylation call to a GC bin.",
"GC bin frequency tables for JASPAR2020 motifs on mm10. One five-row matrix per motif giving the number of binding sites falling in each genome-wide GC quintile, used by methylTFR to compute the expected methylation a motif would show from GC content alone.",
"Genome-wide JASPAR2020 transcription factor binding site predictions for mm10, one GRanges per motif, each range extended by 200 bases on either side of the motif match so that methylTFR can read methylation across the footprint window."
),
BiocVersion = "3.23",
Genome = "mm10",
SourceType = "RDS",
SourceUrl = c(
"https://resources.altius.org/~jvierstra/projects/motif-clustering/releases/v1.0/",
"https://resources.altius.org/~jvierstra/projects/motif-clustering/releases/v1.0/",
"https://github.com/GreenleafLab/chromVARmotifs",
"https://github.com/GreenleafLab/chromVARmotifs",
"https://bioconductor.org/packages/BSgenome.Mmusculus.UCSC.mm10/",
"https://jaspar.elixir.no/",
"https://jaspar.elixir.no/"
),
SourceVersion = c(
"Vierstra motif archetypes v1.0",
"Vierstra motif archetypes v1.0",
"CIS-BP v2 (chromVARmotifs pwms_v2)",
"CIS-BP v2 (chromVARmotifs pwms_v2)",
"mm10",
"JASPAR2020 CORE",
"JASPAR2020 CORE"
),
Species = "Mus musculus",
TaxonomyId = 10090,
Coordinate_1_based = TRUE,
DataProvider = c(
"Altius Institute",
"Altius Institute",
"CIS-BP",
"CIS-BP",
"UCSC",
"JASPAR",
"JASPAR"
),
Maintainer = "Irem B. Gunduz <irembgunduz@gmail.com>",
RDataClass = c("list", "GRangesList", "list", "GRangesList", "GRanges", "list", "GRangesList"),
DispatchClass = "Rds",
Location_Prefix = "https://bioconductorhubs.blob.core.windows.net/annotationhub/",
RDataPath = c(
"methylTFRAnnotationMm10/altius_motif_gcfreq.rds",
"methylTFRAnnotationMm10/altius_tf_bindsites.rds",
"methylTFRAnnotationMm10/cisbpv2_motif_gcfreq.rds",
"methylTFRAnnotationMm10/cisbpv2_tf_bindsites.rds",
"methylTFRAnnotationMm10/genomewide_GC_mm10.rds",
"methylTFRAnnotationMm10/jaspar2020_motif_gcfreq.rds",
"methylTFRAnnotationMm10/jaspar2020_tf_bindsites.rds"
),
Tags = c(
"methylTFRAnnotationMm10:GCcontent:MotifAnnotation:ALTIUS",
"methylTFRAnnotationMm10:TFBS:MotifAnnotation:ALTIUS",
"methylTFRAnnotationMm10:GCcontent:MotifAnnotation:CISBPV2",
"methylTFRAnnotationMm10:TFBS:MotifAnnotation:CISBPV2",
"methylTFRAnnotationMm10:GCcontent:Genome",
"methylTFRAnnotationMm10:GCcontent:MotifAnnotation:JASPAR2020",
"methylTFRAnnotationMm10:TFBS:MotifAnnotation:JASPAR2020"
)
)

# Write out to inst/extdata/metadata.csv
dir.create("inst/extdata", showWarnings = FALSE, recursive = TRUE)
write.csv(meta, file = "inst/extdata/metadata.csv", row.names = FALSE)

# Validate using AnnotationHubData
if (!requireNamespace("AnnotationHubData", quietly = TRUE)) {
message("Please install AnnotationHubData to validate your metadata.csv")
} else {
AnnotationHubData::makeAnnotationHubMetadata("inst/extdata")
message("Metadata validation completed successfully!")
}