This assignment will be completed excusively in Python This assignment will be due TWO weeks from the date of assignment
This precept will introduce you to the Adroit HPC cluster and basic bioinformatics tools. You will learn how to access the Adroit cluster, clone a repository, and run basic bioinformatics analyses. You will also learn how to use the vcftools tool to examine a Variant Call Format (VCF) file.
Make sure you document the commands you use to complete the exercises. Submitting a text file with these commands is sufficient.
Follow the guide for accessing the Adroit cluster.
ssh -m hmac-sha2-512 <YourNetID>@adroit.princeton.edugit clone [your assignment repository URL].anaconda3 module: module load anaconda3/2024.2conda create -n [environment name].conda activate [environment name].vcftools in the new environment: conda install -c bioconda vcftools.vcftools to examine the contents of the VCF file.vcftools to measure missingness and filter on minor allele frequency.vcftools to measure the missingness of each individual.vcftools to filter to sites with a minor allele frequency of at least 0.1.Output: The missingness of each individual before and after filtering. Please include the commands you used to generate these values.
Optional: Plot the missingness of each individual before and after filtering.