PoonLab / vindels

Developing an empirical model of sequence insertion and deletion in virus genomes
1 stars 0 forks source link

Input is data.frame but should be a plain list of items to be stacked #100

Closed ArtPoon closed 1 year ago

ArtPoon commented 2 years ago

From 9_5_indel_rates.r:

iint <- as.data.frame(rbindlist(iint))
itip <- as.data.frame(rbindlist(itip))
dint <- as.data.frame(rbindlist(dint))
dtip <- as.data.frame(rbindlist(dtip))

iTotal <- iint
dTotal <- dint

require(data.table)
iTotal <- as.data.frame(rbindlist(iTotal))
dTotal <- as.data.frame(rbindlist(dTotal))

Looks like the last two lines that raise this error are redundant.