You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
333 B
15 lines
333 B
FROM x as row
|
|
IN "E:\GCModeller\src\runtime\Darwinism\LINQ\test\data.csv"
|
|
WHERE x.PeakQuality >= 0.999
|
|
SELECT x.LipidIon,
|
|
lipidName = x.Class & x.FattyAcid,
|
|
x.Class,
|
|
x.FattyAcid,
|
|
x.Ion,
|
|
x.Formula,
|
|
x.PeakQuality,
|
|
x."m-Score"
|
|
|
|
SKIP 100
|
|
ORDER BY pow("m-Score", PeakQuality) DESCENDING
|
|
TAKE 15 |