Yeah, they just factorized the colData or whatever the equivalent is in the older version that you're using (I'll have to download that version and have a look).
Unconfigured Ad
Collapse
X
-
So the first thing to try is to just reset ecs@designColumns to contain factors (if they don't already). This won't solve the original issue, since I suspect that the conversion to a dataframe is occurring after this step. The quickest way to go about this is to just look at the code for estimatelog2FoldChanges (I'll paste it below) and just execute every line manually. Then you'll know exactly what it's processing and why the duplicate row name error is happening (this will also give you the chance to avert that error then).
Code:estimatelog2FoldChanges <- function(ecs, fitExpToVar="condition", denominator="", getOnlyEffects=FALSE, averageOutExpression=TRUE, nCores=1, quiet=FALSE, file="") { stopifnot(is(ecs, "ExonCountSet")) if(any(is.na(sizeFactors(ecs)))){ stop("Please estimate sizeFactors first\n")} if(!fitExpToVar %in% ecs@designColumns){ stop("fitExpToVar parameter is not in the design columns, double check ecs@designColumns")} if(sum(is.na(featureData(ecs)$dispersion))==nrow(counts(ecs))){ stop("No dispersion parameters found, first call function estimateDispersions...\n")} frm <- as.formula(paste("count ~", fitExpToVar, "* exon")) testablegenes <- as.character(unique(fData(ecs)[which(fData(ecs)$testable),]$geneID)) geteffects <- function(geneID){ coefficients <- fitAndArrangeCoefs(ecs, geneID=geneID, frm, balanceExons=TRUE) if( is.null( coefficients ) ){ return(coefficients) } ret <- t(getEffectsForPlotting(coefficients, averageOutExpression=averageOutExpression, groupingVar=fitExpToVar)) rownames(ret) <- paste(geneID, rownames(ret), sep=":") return(ret) } if( nCores > 1 ){ if(!is.loaded("mc_fork", PACKAGE="parallel")){ stop("Please load first parallel package or set parameter nCores to 1...")} alleffects <- parallel:::mclapply( testablegenes, function(x){ geteffects(x) }, mc.cores=nCores ) }else{ alleffects <- lapply( testablegenes, function(x){geteffects(x)}) } names(alleffects) <- testablegenes alleffects <- do.call(rbind, alleffects) alleffects <- vst(exp( alleffects ), ecs) toadd <- matrix(NA, nrow=nrow(ecs), ncol=ncol(alleffects)) rownames(toadd) <- featureNames(ecs) if( getOnlyEffects ){ colnames(toadd) <- colnames(alleffects) toadd[rownames(alleffects), colnames(alleffects)] <- alleffects }else{ if( denominator == "" ){ denominator <- as.character(design(ecs, drop=FALSE)[[fitExpToVar]][1]) } stopifnot( any( colnames(alleffects) %in% denominator ) ) denoCol <- which(colnames(alleffects) == denominator) alleffects <- log2(alleffects / alleffects[,denoCol]) colnames(alleffects) <- sprintf("log2fold(%s/%s)", colnames(alleffects), denominator) colnames(toadd) <- colnames(alleffects) alleffects <- alleffects[,-denoCol, drop=FALSE] toadd <- toadd[,-denoCol, drop=FALSE] toadd[rownames(alleffects), colnames(alleffects)] <- alleffects } fData(ecs) <- cbind(fData(ecs), toadd) ecs }
Comment
-
Latest Articles
Collapse
-
by SEQadmin2
Data variability is still an issue in sequencing technologies despite the advances in reproducibility and accuracy of these platforms. But the problem does not originate in the sequencing itself, but in the previous steps, before the sample reaches the sequencer.
The first step is collection, followed by preservation and sample preparation for analysis. Most scientists overlook those steps, but not being careful might just be skewing the experiment’s results.
...-
Channel: Articles
06-02-2026, 10:05 AM -
-
by SEQadmin2
With the launch of new single-cell sequencing platforms in 2026, the field stands at an exciting inflection point. This article surveys the most impactful advances in the field and discusses how they’re reshaping research in cancer, immunology, and beyond.
Introduction
Single-cell sequencing technologies have undergone remarkable advances over the past decade, transitioning from low-throughput experimental approaches to highly scalable platforms capable of...-
Channel: Articles
05-22-2026, 06:42 AM -
ad_right_rmr
Collapse
News
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Sequencing the Two-Toed Sloth Genome Reveals Jumping Genes Tied to Its Extreme Metabolism
by SEQadmin2
Started by SEQadmin2, Today, 11:58 AM
|
0 responses
9 views
0 reactions
|
Last Post
by SEQadmin2
Today, 11:58 AM
|
||
|
Started by SEQadmin2, 06-05-2026, 10:09 AM
|
0 responses
25 views
0 reactions
|
Last Post
by SEQadmin2
06-05-2026, 10:09 AM
|
||
|
Started by SEQadmin2, 06-04-2026, 08:59 AM
|
0 responses
34 views
0 reactions
|
Last Post
by SEQadmin2
06-04-2026, 08:59 AM
|
||
|
Started by SEQadmin2, 06-02-2026, 12:03 PM
|
0 responses
56 views
0 reactions
|
Last Post
by SEQadmin2
06-02-2026, 12:03 PM
|
Comment