CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
sequence.js25 linesDownload Raw Back to gel-core
1import { entityKind, is } from "../entity.js";2class GelSequence {3  constructor(seqName, seqOptions, schema) {4    this.seqName = seqName;5    this.seqOptions = seqOptions;6    this.schema = schema;7  }8  static [entityKind] = "GelSequence";9}10function gelSequence(name, options) {11  return gelSequenceWithSchema(name, options, void 0);12}13function gelSequenceWithSchema(name, options, schema) {14  return new GelSequence(name, options, schema);15}16function isGelSequence(obj) {17  return is(obj, GelSequence);18}19export {20  GelSequence,21  gelSequence,22  gelSequenceWithSchema,23  isGelSequence24};25//# sourceMappingURL=sequence.js.map