View source: R/check_sample_ids.R
check_sample_ids | R Documentation |
sample_ids
is valid.Check if a sample_ids
is valid.
Will stop if not
check_sample_ids(sample_ids)
sample_ids |
sample IDs, which is a tibble
with two columns: the first column holds the family ID
(called |
Nothing. Will stop if the sample_ids
is invalid
Richèl J.C. Bilderbeek
# For PLINK, a .phe table contains the sample IDs
phe_table <- get_test_phe_table()
sample_ids <- phe_table[, 1:2]
check_sample_ids(sample_ids)
# For PLINK2, a .psam table contains the sample IDs
psam_table <- get_test_psam_table()
sample_ids <- psam_table[, 1:2]
check_sample_ids(sample_ids)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.