Here's a graph that's rescaled to molarity vs. (linear) molecule
length:

The molar mean length, within the range of 100 to 2500 bp, is 896 bp
and the molar median is 775 bp. 42% of molecules within that range
are within the range of 100-700 bp, roughly the tolerance of
Illumina sequencers. Longer molecules don't create a big problem;
they simply don't produce amplifiable clusters on the flow cell.
So yes, these libraries are skewed toward somewhat long molecules,
but not terribly so. I would go ahead and sequence them, and just
use a high loading concentration, e.g. 150% of the recommended
molarity on the NextSeq 500 is a good starting point for Smart-3SEQ
libraries.
JWF
P.S. No, you don't need a different electrophoresis instrument to
see this, just different software, if you're familiar with R:
https://stanford.edu/~jwfoley/bioanalyzeR.html
Unfortunately the missing peaks in your extra wells trigger a bug in
the most recent release; the latest development version has a patch
to fix it but that's not merged into a new release yet so you'll
have to install from the development branch:
> library(remotes)
> install_github("jwfoley/bioanalyzeR", "devel")
Then this is how I did the above analysis:
> library(ggplot2)
> library(bioanalyzeR)
> rundata <- subset(read.electrophoresis("b3c1A_library.xml"),
well.number == 1)
> qplot.electrophoresis(rundata, xlim = c(100, 2500), show.peaks
= "n", region.alpha = NA) + geom_vline(xintercept = 700, linetype =
"dashed")
> summarize.custom(rundata, 100, 2500)
> integrate.custom(rundata, 100, 700) / integrate.custom(rundata,
100, 2500)