Originally posted by super0925
View Post
Unconfigured Ad
Collapse
X
-
Sorry D, I didn't totally get what you said.Originally posted by dpryan View PostGTF files match the "top assembly", rather than the "primary assembly". Either download the matching fasta file or remove the haplotype patches from your GTF.
The genes.gtf and genome.fa are downloaded from the latest UCSC homo sapiens hg19 genome.
How could I 'download the matching fasta' or 'remove the haplotype patches' to use your script?
Thank you!
PS: I only change your script to
GTF <- import.gff(GTFfile, format="gtf", genome="hg19", asRangedData=F, feature.type="exon")
grl <- reduce(split(GTF, elementMetadata(GTF)$gene_id))
reducedGTF <- unlist(grl, use.names=T)
Comment
-
If you just need the lengths then remove the code that calculates GC content. Something like the following should work:
Code:#!/usr/bin/Rscript library(GenomicRanges) library(rtracklayer) library(Rsamtools) GTFfile = "something.GTF" #Load the annotation and reduce it GTF <- import.gff(GTFfile, format="gtf", genome="GRCm38.71", asRangedData=F, feature.type="exon") grl <- reduce(split(GTF, elementMetadata(GTF)$gene_id)) reducedGTF <- unlist(grl, use.names=T) elementMetadata(reducedGTF)$gene_id <- rep(names(grl), elementLengths(grl)) elementMetadata(reducedGTF)$widths <- width(reducedGTF) #Create a list of the ensembl_id/GC calc_GC_length <- function(x) { sum(elementMetadata(x)$widths) } output <- sapply(split(reducedGTF, elementMetadata(reducedGTF)$gene_id), calc_GC_length)
Comment
-
Originally posted by dpryan View PostIf you just need the lengths then remove the code that calculates GC content. Something like the following should work:
Code:#!/usr/bin/Rscript library(GenomicRanges) library(rtracklayer) library(Rsamtools) GTFfile = "something.GTF" #Load the annotation and reduce it GTF <- import.gff(GTFfile, format="gtf", genome="GRCm38.71", asRangedData=F, feature.type="exon") grl <- reduce(split(GTF, elementMetadata(GTF)$gene_id)) reducedGTF <- unlist(grl, use.names=T) elementMetadata(reducedGTF)$gene_id <- rep(names(grl), elementLengths(grl)) elementMetadata(reducedGTF)$widths <- width(reducedGTF) #Create a list of the ensembl_id/GC calc_GC_length <- function(x) { sum(elementMetadata(x)$widths) } output <- sapply(split(reducedGTF, elementMetadata(reducedGTF)$gene_id), calc_GC_length)
Hi D
Brilliant! It works.
I have just changed one command
GTF <- import.gff(GTFfile, format="gtf", genome="hg19", asRangedData=F, feature.type="exon")
However, the result only contain 25369 genes.
However, there are 23170 rows in the count table generated by HTseq, which means there are 23170 genes in the human genome.
Why does the dimension are different? I don't think rpkm() could go further if the dimension are different...
Thank you!
Comment
-
There are some entries that htseq-count will skip (those without exons?), which presumably is why this happens. Anyway, you need to ensure that everything is in the same order anyway, so make sure to write meaningful row names and use those with match().
Comment
-
Thank you D. Very helpful.Originally posted by dpryan View PostThere are some entries that htseq-count will skip (those without exons?), which presumably is why this happens. Anyway, you need to ensure that everything is in the same order anyway, so make sure to write meaningful row names and use those with match().
And I also found Cufflinks could calculate RPKM directly.
by
cufflinks -o OutDir -g hg19/genes.gtf TopHat/accepted_hits.bam
Comment
-
Hi
So the script worked for me and I got an mm9.fa.fai file as output, wondering how this can be used with edgeR to generate the RPKMs? Thanks.
Comment
Latest Articles
Collapse
-
by SEQadmin2
CRISPR/Cas9 sparked the gene editing revolution for both research and therapeutics.1 But this system still showed severe issues that limited its applications. The most prominent were the heavy reliance on PAM sequences, delivery limitations, double-stranded breaks that prompt unintended edits and cell death, and editing inefficiency (both in targeting and in knock-in reliability).
Despite this, “CRISPR helped turn genome editing from a specialized technique into...-
Channel: Articles
07-31-2026, 11:01 AM -
-
by SEQadmin2
Proteomics platforms are evolving rapidly, with advances in mass spectrometry and affinity-based approaches expanding what researchers can detect and at what scale. As the field moves toward deeper proteome coverage and clinical applications, scientists face an increasingly complex landscape of tools. This article will explore how researchers are navigating these choices to find the right platform for their work.
The systematic characterization of the human proteome has...-
Channel: Articles
07-20-2026, 11:48 AM -
-
by SEQadmin2
Genomics studies in neuroscience face a special challenge due to the brain’s complexity and scarcity of samples. Mapping changes in cell type and state using conventional next-generation sequencing methods remains challenging. Advances in technologies like single-cell sequencing, spatial transcriptomics, and long-read sequencing have opened the door to deeper studies of the brain and diseases like Alzheimer’s, amyotrophic lateral sclerosis (ALS), and schizophrenia.
...-
Channel: Articles
07-09-2026, 11:10 AM -
ad_right_rmr
Collapse
News
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by SEQadmin2, Today, 10:13 AM
|
0 responses
10 views
0 reactions
|
Last Post
by SEQadmin2
Today, 10:13 AM
|
||
|
Started by SEQadmin2, 07-31-2026, 02:55 AM
|
0 responses
23 views
0 reactions
|
Last Post
by SEQadmin2
07-31-2026, 02:55 AM
|
||
|
Started by SEQadmin2, 07-24-2026, 12:17 PM
|
0 responses
19 views
0 reactions
|
Last Post
by SEQadmin2
07-24-2026, 12:17 PM
|
||
|
Started by SEQadmin2, 07-23-2026, 11:41 AM
|
0 responses
17 views
0 reactions
|
Last Post
by SEQadmin2
07-23-2026, 11:41 AM
|
Comment