useDynLib(StudentGWAS)

import(methods)
import(DBI)
import(RSQLite)

exportClasses(
    GWASdata
)

export(
    ## Ordinary functions (i.e. not generic):
    getSnps,
    getSubjects,
    getKEGGSnps,
    GWASdata,

    ## Generic functions:
    datapath, dataconn,
    metadatapath, metadataconn,
    getCols,
    cld
)

exportMethods(
    ## Methods associated with the generic functions defined in
    ## this package:
    datapath, dataconn,
    metadatapath, metadataconn,
    getCols,
    cld,

    ## Methods associated with generic functions defined somewhere else:
    nrow, ncol, dim, show, coerce, as.matrix
)

