if (FALSE) {
# Download the latest human GTF file with primary assembly annotations into a temp directory
temp_dir <- tempdir()
gff3_file <- get_gff3(
species = "human",
release_version = "latest_release",
annotation_type = "primary_assembly.basic.annotation.gff3.gz",
dest_folder = temp_dir
)
print(gff3_file)
# Download a specific mouse release with long noncoding RNA annotations into a temp directory
temp_dir <- tempdir()
gff3_file <- get_gff3(
species = "mouse",
release_version = "release_M36",
annotation_type = "long_noncoding_RNAs.gff3.gz",
dest_folder = temp_dir
)
print(gff3_file)
}
Run the code above in your browser using DataLab