Skip to content

Commit

Permalink
Merge pull request #87 from morinlab/houman-dev
Browse files Browse the repository at this point in the history
miRNA_targetscan
  • Loading branch information
Kdreval authored Jun 27, 2024
2 parents 0660a17 + 058c89b commit a970e21
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions data-raw/DATASET.R
Original file line number Diff line number Diff line change
Expand Up @@ -423,3 +423,39 @@ hotspots_annotations <- system.file(
Chromosome = as.character(Chromosome)
)
usethis::use_data(hotspots_annotations, overwrite = TRUE)


mirna_targetscan <- system.file(
"extdata",
"Predicted_Target_Locations.default_predictions.hg19.bed.gz",
package = "GAMBLR.data"
) %>%
read_tsv(
col_names = c(
"Chromosome",
"Start_Position",
"End_Position",
"Gene:miRNA",
"context++_score_percentile",
"Strand",
"SP",
"EP",
"color",
"block_count",
"sites",
"block"
)
) %>%
select(
"Chromosome",
"Start_Position",
"End_Position",
"Gene:miRNA",
"sites"
) %>%
separate(
"Gene:miRNA",
into = c("Hugo_Symbol", "miRNA"),
sep = ":"
)
usethis::use_data(mirna_targetscan, overwrite = TRUE)
Binary file not shown.

0 comments on commit a970e21

Please sign in to comment.