SampleTable
Bases: object
A class to represent sample (individual) information and attributes in
the context of a genotype matrix. The sample table is a wrapper around
a pandas.DataFrame
object that contains the sample information. The
table provides methods to read and write sample information from/to
disk, filter samples, perform checks/validation, and extract specific columns
from the table.
Attributes:
Name | Type | Description |
---|---|---|
table |
Union[DataFrame, None]
|
The sample table as a pandas |
_phenotype_likelihood |
Union[str, None]
|
The likelihood of the phenotype values (if present). |
_covariate_cols |
The names or IDs of covariates that are present in the sample table. |
Source code in magenpy/SampleTable.py
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 |
|
covariates
property
¶
Returns:
Type | Description |
---|---|
The column names for the covariates stored in the sample table. |
fid
property
¶
Returns:
Type | Description |
---|---|
The family ID of each individual in the sample table. |
iid
property
¶
Returns:
Type | Description |
---|---|
The individual ID of each individual in the sample table. |
n
property
¶
See Also
Returns:
Type | Description |
---|---|
The sample size (number of individuals) in the sample table. |
original_index
property
¶
Returns:
Type | Description |
---|---|
The original index of each individual in the sample table (before applying any filters). |
phenotype
property
¶
Returns:
Type | Description |
---|---|
The phenotype column from the sample table. |
Raises:
Type | Description |
---|---|
KeyError
|
If the phenotype is not set. |
phenotype_likelihood
property
¶
Returns:
Type | Description |
---|---|
The phenotype likelihood family. |
sample_size
property
¶
shape
property
¶
Returns:
Type | Description |
---|---|
The shape of the sample table (mainly sample size) as a tuple (n,). |
__init__(table=None, phenotype_likelihood=None)
¶
Initialize the sample table object.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
table
|
Union[DataFrame, None]
|
A pandas DataFrame with the sample information. |
None
|
phenotype_likelihood
|
Union[str, None]
|
The likelihood of the phenotype values. |
None
|
Source code in magenpy/SampleTable.py
filter_samples(keep_samples=None, keep_file=None)
¶
Filter samples from the samples table. User must specify either a list of samples to keep or the path to a file with the list of samples to keep.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
keep_samples
|
A list (or array) of sample IDs to keep. |
None
|
|
keep_file
|
The path to a file with the list of samples to keep. |
None
|
Source code in magenpy/SampleTable.py
from_covariate_file(covar_file, **read_csv_kwargs)
classmethod
¶
Initialize a sample table from a file of covariates.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
covar_file
|
The path to the covariates file. |
required | |
read_csv_kwargs
|
keyword arguments to pass to the |
{}
|
Returns:
Type | Description |
---|---|
A |
Source code in magenpy/SampleTable.py
from_fam_file(fam_file)
classmethod
¶
Initialize a sample table object from a path to PLINK FAM file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fam_file
|
The path to the FAM file. |
required |
Returns:
Type | Description |
---|---|
A |
Source code in magenpy/SampleTable.py
from_phenotype_file(phenotype_file, filter_na=True, **read_csv_kwargs)
classmethod
¶
Initialize a sample table from a phenotype file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
phenotype_file
|
The path to the phenotype file. |
required | |
filter_na
|
Filter samples with missing phenotype values (Default: True). |
True
|
|
read_csv_kwargs
|
keyword arguments to pass to the |
{}
|
Returns:
Type | Description |
---|---|
A |
Source code in magenpy/SampleTable.py
get_covariates_matrix(covar_subset=None)
¶
Get the covariates associated with each individual in the sample table as a matrix.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
covar_subset
|
A subset of the covariate names or IDs to include in the matrix. |
None
|
Returns:
Type | Description |
---|---|
A numpy matrix with the covariates values for each individual. |
Source code in magenpy/SampleTable.py
get_covariates_table(covar_subset=None)
¶
Get a table of covariates associated with each individual in the sample table. The table will be formatted as (FID, IID, covar1, covar2, ...).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
covar_subset
|
A subset of the covariate names or IDs to include in the table. |
None
|
Returns:
Type | Description |
---|---|
A pandas DataFrame with the covariate information. |
Source code in magenpy/SampleTable.py
get_individual_table()
¶
Returns:
Type | Description |
---|---|
A table of individual IDs (FID, IID) present in the sample table. |
get_phenotype_table()
¶
Returns:
Type | Description |
---|---|
A table of individual IDs and phenotype values (FID IID phenotype) in the sample table. |
Source code in magenpy/SampleTable.py
post_check_phenotype()
¶
Apply some simple heuristics to check the phenotype values provided by the user and infer the phenotype likelihood (if feasible).
Raises:
Type | Description |
---|---|
ValueError
|
If the phenotype values could not be matched with the inferred phenotype likelihood. |
Source code in magenpy/SampleTable.py
read_covariates_file(covar_file, **read_csv_kwargs)
¶
Read the covariates file from the provided path. The expected format is Family ID (FID
),
Individual ID (IID
) and the remaining columns are assumed to be covariates. You may adjust
the parsing configurations with keyword arguments that will be passed to pandas.read_csv
.
Warning
If covariate columns are already present in the sample table, they will be replaced. The data structure currently does not support reading separate covariates files.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
covar_file
|
The path to the covariates file. |
required | |
read_csv_kwargs
|
keyword arguments to pass to the |
{}
|
Source code in magenpy/SampleTable.py
read_phenotype_file(phenotype_file, drop_na=True, **read_csv_kwargs)
¶
Read the phenotype file from disk. The expected format is Family ID (FID
),
Individual ID (IID
) and the phenotype column phenotype
. You may adjust
the parsing configurations with keyword arguments that will be passed to pandas.read_csv
.
Warning
If a phenotype column is already present in the sample table, it will be replaced. The data structure currently does not support multiple phenotype columns.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
phenotype_file
|
The path to the phenotype file. |
required | |
drop_na
|
Drop samples whose phenotype value is missing (Default: True). |
True
|
|
read_csv_kwargs
|
keyword arguments to pass to the |
{}
|
Source code in magenpy/SampleTable.py
set_phenotype(phenotype, phenotype_likelihood=None)
¶
Update the phenotype in the sample table using the provided values.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
phenotype
|
The new phenotype values, represented by a numpy array or Iterable. |
required | |
phenotype_likelihood
|
The likelihood of the phenotype values. |
None
|
Source code in magenpy/SampleTable.py
to_file(output_file, col_subset=None, **to_csv_kwargs)
¶
Write the contents of the sample table to file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
output_file
|
The path to the file where to write the sample table. |
required | |
col_subset
|
A subset of the columns to write to file. |
None
|
|
to_csv_kwargs
|
keyword arguments to pass to the |
{}
|
Source code in magenpy/SampleTable.py
to_table(col_subset=None)
¶
Get the sample table as a pandas DataFrame.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
col_subset
|
A subset of the columns to include in the table. |
None
|
Returns:
Type | Description |
---|---|
A pandas DataFrame with the sample information. |