View source: R/create_plink_options.R
create_plink_options | R Documentation |
Create the options to run PLINK. Options are:
create_plink_options(
plink_version = get_default_plink_version(),
plink_exe_path = get_default_plink_exe_path(),
os = get_os()
)
plink_version |
version of PLINK, e.g. |
plink_exe_path |
path to
the |
os |
name of the operating system, as returned by app_dir |
create_plink_v1_7_options: use PLINK v1.7
create_plink_v1_9_options: use PLINK v1.9
create_custom_plink_options: use a custom version of PLINK
Prefer to call these more specialized functions.
the PLINK options, as can be checked by check_plink_options
Richèl J.C. Bilderbeek
# Use the default PLINK version
create_plink_options()
# Use PLINK v1.7
create_plink_v1_7_options()
# Use PLINK v1.9
create_plink_v1_9_options()
# Use PLINK v2.0
create_plink_v2_0_options()
# Use a custom PLINK version
create_custom_plink_options(
plink_exe_path = "path_to_my_custom_plink_folder/plink3.mp4"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.