--- title: "04-LncFinder" author: "Zach Bengtsson" date: "2023-04-18" output: html_document --- ```{r setup, include=FALSE} knitr::opts_chunk$set(echo = TRUE) ``` Load the LncFinder and associated packages for workflow... ```{r} install.packages(c("readr", "tidyverse", "LncFinder", "GenomicRanges", "Biostrings", "rtracklayer")) ``` ```{r} library(GenomicFeatures) library(GenomicRanges) library(Biostrings) library(rtracklayer) library(LncFinder) ```