View source: R/create_select_snps_args.R
create_select_snps_args | R Documentation |
Create the command-line arguments to select SNPs.
create_select_snps_args(
plink_bin_filenames,
snp_selector,
base_output_filename = plinkr::get_plinkr_tempfilename(),
plink_options = create_plink_options()
)
plink_bin_filenames |
the binary data files' names for |
snp_selector |
a SNP selector, a way to select one or more SNPs. See create_snps_selector for all SNP selectors. |
base_output_filename |
the base of the filenames that are
used as output for |
plink_options |
options to run PLINK, as created by create_plink_options |
the command-line arguments
Richèl J.C. Bilderbeek
create_select_snps_args(
plink_bin_filenames = create_test_plink_bin_filenames(),
snp_selector = create_test_single_snp_selector()
)
create_select_snps_args(
plink_bin_filenames = create_plink_bin_filenames(
bed_filename = get_plinkr_filename("select_snps.bed"),
bim_filename = get_plinkr_filename("select_snps.bim"),
fam_filename = get_plinkr_filename("select_snps.fam")
),
snp_selector = create_test_random_snps_selector()
)
create_select_snps_args(
plink_bin_filenames = create_test_plink_bin_filenames(),
snp_selector = create_test_snp_range_selector()
)
create_select_snps_args(
plink_bin_filenames = create_test_plink_bin_filenames(),
snp_selector = create_test_snp_window_selector()
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.