Skip to content

ISA (Investigation – Study – Assay)

At the top level of the ISA portion of the data model is the ArcInvestigation class. It contains organizational metadata like Persons and Publications as well as the experimental metadata in the major datasets ArcStudies and ArcAssays.

Setting up basic Investigation

Section titled Setting up basic Investigation
open ARCtrl
let inv = ArcInvestigation("MyInvestigation", title = "My Investigation", description = "My Investigation Description")
let study = inv.InitStudy("MyStudy")
let lukas = Person(firstName = "Heinrich", lastName = "Weil", midInitials = "L")
study.Contacts.Add(lukas)
study.InitTable("Growth")