Description Usage Arguments Examples
This function allows you to output .RData files to be used as input for the analysis run in the second function.
1 2 |
Chromosome |
Specify chromosome |
ASE_file |
Specify file containing allele-specific expression information |
legend_file |
Specify legend file containing SNP IDs and position info etc |
haplotypes_file |
Provide haplotypes corresponding to SNPs in legend file, for given individuals found in samples file |
Samples |
File containing cohort information |
output_path |
Directory path to save output files to |
Species |
Select same species as cohort. Defaults to "hsapiens" |
EnsemblVersion |
Specify version of Ensembl to download from. Defaults to NULL which is the most recent build |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #Downloading Ensembl information for chromosome 22 of hsapiens, using the build corresponding to the sample data
Gen.input(22, "path_to_ASE_file/ASEfile.txt.gz",
"path_to_legend_file/file.legendfile.gz",
"path_to_haplotypes_file/hapfile.hap.gz",
"path_to_samples_file/samples.txt", EnsemblVersion=78)
#Downloading Ensembl information for chromosome 22 of hsapiens, using the most recent build
Gen.input(22, "path_to_ASE_file/ASEfile.txt.gz",
"path_to_legend_file/file.legendfile.gz",
"path_to_haplotypes_file/hapfile.hap.gz",
"path_to_samples_file/samples.txt")
#Downloading Ensembl information for chromosome 1 of mmusculus, using the most recent build
Gen.input(1, "path_to_ASE_file/ASEfile.txt.gz",
"path_to_legend_file/file.legendfile.gz",
"path_to_haplotypes_file/hapfile.hap.gz",
"path_to_samples_file/samples.txt",
"mmusculus")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.