1. Homepage
  2. Programming
  3. CPT111 Java Programming - Coursework 3 – DNA for Profiling and Disease Detection

CPT111 Java Programming - Coursework 3 – DNA for Profiling and Disease Detection

Engage in a Conversation
CNXJTLUCPT111Java ProgrammingDNA for Profiling and Disease DetectionJava

Coursework 3 – DNA for Profiling and Disease Detection

Background

DNA carries the genetic information in living beings. Interestingly, it has been used in criminal justice system for profiling work, as well as disease diagnosis in medicine. In this coursework, your task is to develop algorithms for those two purposes. CourseNana.COM

DNA

Deoxyribonucleic acid (DNA) is a sequence of molecules called nucleotides, arranged into a double helix shape. Each nucleotide of DNA contains one of four different bases: Adenine (A), Cytosine (C), Guanine (G), or Thymine (T). CourseNana.COM

Every human cell has billions of these nucleotides arranged in sequence. Some portions of this sequence are the same or very similar, across almost all humans. However, there are some portions of the sequence have a higher genetic diversity and thus vary more across the population. CourseNana.COM

Short Tandem Repeats (STRs)

One place where DNA tends to have high genetic diversity is in Short Tandem Repeats (STRs). An STR is a short sequence of DNA bases that is repeated continuously numerous times at specific locations in DNA. The number of times any particular STR repeats varies a lot among different people. CourseNana.COM

In the DNA samples below, for example, Alice has the STR AAGT repeated back-toback three times in her DNA, while Bob has the same STR repeated back-to-back four times. CourseNana.COM

DNA Profiling and Database

DNA profiling is a procedure used to identify individuals on the basis of their unique genetic makeup. Recording the number of STR of the population in a DNA database, and then firstly using it for searching can help speeding up the identification process. CourseNana.COM

Using multiple STRs, we can improve the accuracy of DNA profiling. If the probability that two people have the same number of a single STR is 5% and we look at 10 different STRs, then the probability that two DNA samples match solely by chance (assuming independence of all STRs) is about 1 in 1 quadrillion. So, if two DNA samples match in the number of continuous repeats for each of the STRs, we can have enough confidence that they came from the same person. Let us have a very simple DNA database in the form of a CSV file. Each row corresponds to an individual, and each column corresponds to a particular STR. For example, database.csv contains: name,AAGT,ACTC,TATG Alice,3,10,8 Bob,4,2,8 CourseNana.COM

The data in the above CSV file would suggest that Alice has the sequence AAGT repeated 3 times consecutively somewhere in her DNA, the sequence ACTC repeated 10 times, and TATG repeated 8 times. Bob, meanwhile, has those same three STRs repeated 4 times, 2 times, and 8 times, respectively. CourseNana.COM

Next, a sequence of DNA is queried to the database. Given that sequence of DNA, how can one identify to whom it belongs? Well, for example, one may first search for the longest length of consecutive repeats of AAGT in the sequence, followed similarly by ACTC and TATG. If one then found that the longest sequence of AAGTs is 3 repeats long, ACTCs is 10 repeats long, and TATGs is 8; one may as a result conclude that the DNA was Alice's. Finally, it's also possible that after one takes the counts for each of the STRs, it doesn't match anyone in the DNA database, in which case one reports no match. CourseNana.COM

One of your task is to write a program that will first take a CSV file containing STR counts for a list of individuals, build a DNA database of your own, take another TXT file that contains a DNA sequence, and then output to whom the DNA belongs or reports no match. CourseNana.COM

Huntington's Disease Diagnosis

Huntington’s disease (HD) is an inherited and terminal neurological disorder. It is a condition that stops parts of the brain working properly over time, and is usually fatal after a period of up to 20 years. CourseNana.COM

At this time, there is no cure for HD. However, in 1993, a group of scientists discovered a very accurate genetic test for diagnosing HD. The gene that causes HD is actually located on Chromosome 4, and has a consecutive repeats of CAG. The normal range of CAG repeats is between 10 and 35. Individuals with HD have between 36 and 180 repeats. CourseNana.COM

Doctors use a certain DNA test to count the number of CAG repeats; and consult the following table to produce a diagnosis: Number of Repeats CourseNana.COM

Diagnosis CourseNana.COM

0-9 10 - 35 36 - 39 40 - 180 CourseNana.COM

= 181 CourseNana.COM

Faulty Test Normal High Risk Huntington's Faulty Test CourseNana.COM

The other one of your task is to write a method that based on the DNA sequence read before, will analyze that sequence for Huntington's disease and produce a diagnosis following the table above. CourseNana.COM

Specification and Deliverables

In this section, you will find details about your implementation and the files that you have to submit. CourseNana.COM

Specification

Your implementation must satisfy the following specification: CourseNana.COM

  1. You will implement your program in DnaProfileDiagnosis.java.
  2. A new object of DnaProfileDiagnosis is created by calling DnaProfileDiagnosis constructor. The file name of the CSV file containing the DNA database would be passed to the constructor.
  3. Your program should open the CSV file and read its contents into the instance variables. You may assume that the first row of the CSV file will be the column names. The first column will be the word name and the remaining columns would be the STR sequences. The following columns would be the actual name and the corresponding STR counts.
  4. The file name of the TXT file containing the DNA sequence would be passed to the readDna instance method. Your program should open the TXT file and read its contents into the instance variables.
  5. The DNA sequence in the TXT file may contain some whitespace (spaces, tabs, newlines). Your program must remove any whitespace before storing and computing on it.
  6. The method checkProfile could then be called, after setting the query sequence. Your algorithm will try to match the STRs counts of the database and the DNA sequence. If a match is found, the name of the individual will be returned as a String, such as "Alice". Otherwise, the String "No match" will be returned. You may assume the STR counts will not match more than one individual.
  7. Calling the checkProfile method before setting the DNA sequence would cause an IllegalArgumentException to be thrown.
  8. The method diagnoseHd could also then be called after setting the DNA sequence. Your algorithm will perform a diagnosis based on the CAG repeats and the table at the previous section. The output of the method would be one of the following Strings: "Faulty Test", "Normal", "High Risk", or "Huntington's".
  9. Calling the diagnoseHd method before setting the DNA sequence would cause an IllegalArgumentException to be thrown.
  10. Another readDna calls may be made to change the DNA sequence.

Instance Variable and Complexity Requirements

In this Coursework 3, to store, to query and compute on the DNA database and the DNA sequence, you must use LinkedList and/or HashMap, and their methods. CourseNana.COM

public class DnaProfileDiagnosis {
// you may modify/add more instance variables
// but your algorithms must primarily use the following
// list and/or map
private LinkedList list;
private HashMap map;
private String dna;
...
}

Failing in satisfying this requirement would result in 0 marks. There is no requirements on the running time of your program. CourseNana.COM

Public API

public class DnaProfileDiagnosis {
// build a database from database.csv
public DnaProfileDiagnosis(String database)
// store a dna sequence with no whitespace from dna.txt
public void readDna(String dna)
// based on the STR counts, return either a name in
// database, or "No Match"
// throws IllegalArgumentException if dna has not been set
public String checkProfile()
// based on the CAG repeats, return either "Faulty Test",
// "Normal", "High Risk", or "Huntington's"
// throws IllegalArgumentException if dna has not been set
public String diagnoseHd()
}

Sample Client

Your program should behave as the example below: CourseNana.COM

public class TestCoursework {
public static void main(String[] args) {
String db1 = "data/db1.csv";
DnaProfileDiagnosis test = new
DnaProfileDiagnosis(db1);
String dna1 = "data/dna1.txt";
test.readDna(dna1);
System.out.println(test.checkProfile()); // Alice
System.out.println(test.diagnoseHd());
// Normal
String dna2 = "data/dna2.txt";
test.readDna(dna2);
System.out.println(test.checkProfile()); // Bob
System.out.println(test.diagnoseHd()); // Huntington's
String db2 = "data/db2.csv";
DnaProfileDiagnosis test2 = new
DnaProfileDiagnosis(db2);
System.out.println(test2.checkProfile());
// Illegal
// ArgumentException thrown
}
}

Code, PowerPoint Slides, Video Requirements

Submit code online (TBA), and create a ppt, video and make a submission to Learning Mall with the following requirements: CourseNana.COM

  1. Cite in code/ppt whenever you use materials that are not your own.
  2. The video must contain discussions of the algorithms you use to complete both the profiling and the diagnosis tasks, followed by their running time analysis.
  3. The length of the video must be less than or equal to 4 minutes. Violating the length requirements will result in 0 marks of your video grade.
  4. Your video must show your face for the purpose of authenticity verification. Violating the showing face requirement will result in 0 marks in your video grade.
  5. You may want to make your video look nicer, however, the grade will not be based on the looks. Only the quality and clarity of the algorithms' discussion and analysis will count. A simple recording of a ppt explanation while showing the presenter face in a box using shared-screen by, for example, Camtasia, BBB, Zhumu, or Tencent Meeting would be sufficient.
  6. Submit to Learning Mall the following: a. The code (details provided later in Announcement) b. The video file in .mp4 c. The PPT file you used to create a video d. (Optional) A link to YouTube or BiliBili of your uploaded video

Get in Touch with Our Experts

WeChat WeChat
Whatsapp WhatsApp
CN代写,XJTLU代写,CPT111代写,Java Programming代写,DNA for Profiling and Disease Detection代写,Java代写,CN代编,XJTLU代编,CPT111代编,Java Programming代编,DNA for Profiling and Disease Detection代编,Java代编,CN代考,XJTLU代考,CPT111代考,Java Programming代考,DNA for Profiling and Disease Detection代考,Java代考,CNhelp,XJTLUhelp,CPT111help,Java Programminghelp,DNA for Profiling and Disease Detectionhelp,Javahelp,CN作业代写,XJTLU作业代写,CPT111作业代写,Java Programming作业代写,DNA for Profiling and Disease Detection作业代写,Java作业代写,CN编程代写,XJTLU编程代写,CPT111编程代写,Java Programming编程代写,DNA for Profiling and Disease Detection编程代写,Java编程代写,CNprogramming help,XJTLUprogramming help,CPT111programming help,Java Programmingprogramming help,DNA for Profiling and Disease Detectionprogramming help,Javaprogramming help,CNassignment help,XJTLUassignment help,CPT111assignment help,Java Programmingassignment help,DNA for Profiling and Disease Detectionassignment help,Javaassignment help,CNsolution,XJTLUsolution,CPT111solution,Java Programmingsolution,DNA for Profiling and Disease Detectionsolution,Javasolution,