-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Continued work on gtf/gff3-related things
- Loading branch information
Kris Alavattam
committed
Apr 20, 2023
1 parent
b245cc3
commit 02cb14c
Showing
3 changed files
with
310 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--- | ||
title: "work_assess_R64-1-1_gff3.Rmd" | ||
output: html_notebookauthor: "KA" | ||
email: "[email protected]" | ||
output: | ||
html_notebook: | ||
toc: yes | ||
toc_float: true | ||
--- | ||
<br /> | ||
|
||
## Get situated | ||
### Code | ||
<details> | ||
<summary><i>Code: Get situated</i></summary> | ||
```{r} | ||
#!/usr/bin/env Rscript | ||
library(GenomicRanges) | ||
library(IRanges) | ||
library(readxl) | ||
library(rtracklayer) | ||
library(tidyverse) | ||
options(scipen = 999) | ||
options(ggrepel.max.overlaps = Inf) | ||
if(stringr::str_detect(getwd(), "kalavattam")) { | ||
p_local <- "/Users/kalavattam/Dropbox/FHCC" | ||
} else { | ||
p_local <- "/Users/kalavatt/projects-etc" | ||
} | ||
p_wd <- "2022_transcriptome-construction/results/2023-0215" | ||
setwd(paste(p_local, p_wd, sep = "/")) | ||
getwd() | ||
rm(p_local, p_wd) | ||
``` | ||
</details> | ||
<br /> | ||
<br /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.