CSCI570 Assignmnet 1-Sequence alignment Solved

30.00 $

Category:

Description

Rate this product

The project is related to the implementation of the two different solutions discussed in Week 8 of the Lecture for the Sequence Alignment problem. You can work on this project in groups of no more than 3 people.

II. Project Description

Implement the basic Dynamic Programming solution to the Sequence Alignment problem. Run the test set provided and show your results.

A. Algorithm Description
Suppose we are given two strings 𝑋 and 𝑌, where 𝑋 consists of the sequence of

symbols 𝑥1, 𝑥2 , … , 𝑥𝑚 and 𝑌 consists of the sequence of symbols 𝑦1, 𝑦2 , … , 𝑦𝑛.

Consider the sets {1, 2, … , 𝑚} and {1, 2, … , 𝑛} as representing the different positions in the strings 𝑋 and 𝑌, and consider a matching of these sets; Recall that a matching is a set of ordered pairs with the property that each item occurs in at most one pair. We say that a matching 𝑀 of these two sets is an alignment if there are no “crossing” pairs: if (𝑖, 𝑗), (𝑖’, 𝑗’) ε 𝑀 and 𝑖 < 𝑖’ , then 𝑗 < 𝑗’. Intuitively, an alignment gives a way of lining up the two strings, by telling us which pairs of positions will be lined up with one another.

Our definition of similarity will be based on finding the optimal alignment between 𝑋 and 𝑌, according to the following criteria. Suppose 𝑀 is a given alignment between 𝑋 and 𝑌:

1. First, there is a parameter δ𝑒 > 0 that defines a gap penalty. For each

position of 𝑋or 𝑌 that is not matched in 𝑀 — it is a gap — we incur a cost of δ.

  1. Second, for each pair of letters 𝑝, 𝑞 in our alphabet, there is a mismatch cost of α𝑝𝑞 for lining up 𝑝 with 𝑞. Thus, for each (𝑖, 𝑗) ε 𝑀, we pay the

    appropriate mismatch cost α𝑥 𝑦 for lining up 𝑥𝑖 with 𝑦𝑗. One generally 𝑖𝑗

    assumes that α𝑝𝑝 = 0 for each letter 𝑝—there is no mismatch cost to line up

    a letter with another copy of itself—although this will not be necessary in

    anything that follows.

  2. The cost of 𝑀 is the sum of its gap and mismatch costs, and we seek an

    alignment of minimum cost.

B. Input string Generator

The input to the program would be a text file containing the following information:

  1. First base string (𝑠1)
  2. Next 𝑗 lines consist of indices after which the copy of the previous string needs to be inserted in the cumulative string. (eg given below)
  3. Second base string (𝑠2)
  4. Next 𝑘 lines consist of indices after which the copy of the previous

    string needs to be inserted in the cumulative string. (eg given below)

This information would help generate 2 strings from the original 2 base strings. This file could be used as an input to your program and your program could use the base strings and the rules to generate the actual strings. Also note that the numbers 𝑗 and 𝑘 correspond to the first and the second string respectively. Make

sure you validate the length of the first and the second string to be 2𝑗 * 𝑙𝑒𝑛(𝑠1) and 2𝑘 * 𝑙𝑒𝑛(𝑠2). Please note that the base strings need not have to be of equal

length and similarly, 𝑗 need not be equal to 𝑘.

  ACTG
  3
  6
  1
  TACG
  1

2 9

Using the above numbers, the generated strings would be

ACACTGACTACTGACTGGTGACTACTGACTGG and TATTATACGCTATTATACGCGACGCGGACGCG

Following is the step by step process on how the above strings are generated.

  ACTG
  ACTGACTG
  ACTGACTACTGACTGG
  ACACTGACTACTGACTGGTGACTACTGACTGG
  TACG
  TATACGCG
  TATTATACGCGACGCG
  TATTATACGCTATTATACGCGACGCGGACGCG

C. Values for Delta and Alphas
Values for α’s are as follows. δ𝑒 is equal to 30.

A

C

G

T

A

0

110

48

94

C

110

0

118

48

G

48

118

0

110

T

94

48

110

0

D. Programming/Scripting Languages
Following are the list of languages which could be used:

1. C
2. C++
3. Java
4. Python 5. Python3

E. Bounds

  1. Basic Algorithm

    0 <= 𝑗, 𝑘 <= 10
    1 <= 𝑙𝑒𝑛(𝑠1), 𝑙𝑒𝑛(𝑠2) <= 2000

    1 <= 2𝑗 * 𝑙𝑒𝑛(𝑠1), 2𝑘 * 𝑙𝑒𝑛(𝑠2) <= 2000

  2. Memory Efficient Algorithm

    0 <= 𝑗, 𝑘 <= 20
    1 <= 𝑙𝑒𝑛(𝑠1), 𝑙𝑒𝑛(𝑠2) <= 20000

    1 <= 2𝑗 * 𝑙𝑒𝑛(𝑠1), 2𝑘 * 𝑙𝑒𝑛(𝑠2) <= 20000

III. Goals
Following are the goals to achieve for your project

A. Your program should take 2 arguments

  1. input file path
  2. output file path (If path is valid and file not found, your program should create it)

Note: As mentioned in Part II-B input file will have data to generate strings. Since Gap penalty (δ𝑒) and Mismatch penalty (α𝑝𝑞) are FIXED, you have to hardcode

them in your program.
You are not allowed to use any libraries.

B. Implement the Dynamic Programming algorithm. Your program should print the following information at the respective lines in output file:

  1. Cost of the alignment (Integer)
  2. First string alignment ( Consists of A, C, T, G, _ (gap) characters)
  3. Second string alignment ( Consists of A, C, T, G, _ (gap) characters )
  4. Time in Milliseconds (Float)
  5. Memory in Kilobytes (Float)

`python2 basic_2.py input.txt output.txt` `java Basic input.txt output.txt` `python3 basic_3.py input.txt output.txt`

Note: There can be multiple alignments which have the same cost. You can print ANY alignment generated by your program. The only condition is it should have a minimum cost.

e.g. For strings 𝑠1: A and 𝑠2: C, alignments A_, _C and _A, C_ both have alignment cost 60 which is minimum. You can print any one of them.

C. Implement the memory efficient version of this solution and repeat the tests in Part B.

D. Plot the results of Part B and Part C using a line graph
Please use the provided input files in the ‘datapoints’ folder for generating the data points to plot the graph.

  1. Single plot of CPU time vs problem size for the two solutions.
  2. Single plot of Memory usage vs problem size for the two solutions.

Units: CPU time – milliseconds, Memory in KB, problem size m+n

IV. Submission

A. You should submit the ZIP file containing the following files.

  1. Basic algorithm file

    Name of the program file should be ‘basic.c’ / ‘ basic.cpp’ / ‘Basic.java’ / ‘basic_2.py’ (Python 2.7) / ‘ basic_3.py’ (Python 3)

  2. Memory efficient algorithm file
    Name of the program file should be ‘efficient.c’ / ‘efficient.cpp’ /

    ‘Efficient.java’ / ‘efficient_2.py’ (Python 2.7) / ‘efficient_3.py’ (Python 3)

  3. Summary.pdf

    It must contain following details

    1. datapoints output table (which are generated from provided input files)
    2. Two graphs and Insights
    3. Contribution from each group member e.g.coding, testing, report

      preparation, etc if everybody did not have equal contribution

    (Please use the provided Summary.docx file, fill in the details and upload it as PDF)

  4. 2 Shell files ‘basic.sh’ and ‘ efficient.sh’ with the commands to compile and run your basic and efficient version. These are needed to provide you flexibility in passing any additional compiler/run arguments that your programs might need. See More Hints (VII part E for more details)

basic.sh

Execution: ./basic.sh input.txt output.txt ./efficient.sh input.txt output.txt

B. The name of your zip file should have the USC IDs (not email ids) of everyone in your group separated by underscore. e.g.

– 1234567890_1234567890_1234567890.zip
– 1234567890_1234567890_1234567890

– basic_2.py
– efficient_2.py – Summary.pdf – basic.sh
– efficient.sh

V. Grading

Please read the following instructions to understand how your submission will be evaluated.

A. Correctness of algorithms – 70 points

  1. Both programs (basic/ efficient) are correctly outputting file having all 5

    lines in correct order: 15 points

  2. Basic Algorithm: 25 points
  3. Memory Efficient Algorithm: 30 points

Note: Graders will execute your program on the `Linux` OS. The goal of Part A is to check correctness. The program should output valid alignment having minimum cost. Memory and Time will be evaluated in Part B.

B. Plots, analysis of results, insights and observations: 30 points

  1. Your program will be run on the input files (provided by us in the ‘data

    points’ folder) to generate output files. The memory and time in the output

    files should be in “close range” to what is given by you in the Summary.pdf

  2. Correctness of the graph
  3. Correctness of Analysis/ Insights

Note: Unlike Part A, evaluation of Part B is subjective so it will be done manually. So it is alright if your graphs/data points have ‘some’ outliers.

VI. What is provided to you in the zip file?

A. SampleTestCases folder containing sample input and output files

  1. Datapoint folder containing input files to generate graph data points.
  2. Summary.docx file for reference
javac Basic.java
java Basic “$1” “$2”

VII. HINTS, NOTES, and FAQs

A. Regarding Input and string generation

  1. We will never give an invalid input to your program. Input strings will always contain A, C, G, T only.
  2. The length of the final input string should be equal to the

    2𝑛𝑢𝑚𝑏𝑒𝑟 𝑜𝑓 𝑙𝑖𝑛𝑒𝑠 * 𝑙𝑒𝑛(𝑏𝑎𝑠𝑒 𝑠𝑡𝑟𝑖𝑛𝑔), as mentioned in the document.

  3. The string generation mechanism is the same irrespective of the basic or the

    efficient version of the algorithm.

  4. The entire program (string generation, solution, write output) should be written in a single file. You may break those functions in different classes to make the code modular, but there should be only one file. Your program won’t be evaluated based on how modular it is.

B. Regarding Algorithm and output

  1. DO NOT REFER TO THE PSEUDOCODE PROVIDED IN KLEINBERG AND

    TARDOS

  2. DO NOT USE ANY LIBRARIES FOR WRITING YOUR ALGORITHMS.
  3. Samples for time and memory calculation are provided. Please use them for

    consistency.

  4. Your solutions for the regular and memory-efficient algorithms should be in two

    different programs.

  5. There can be multiple valid sequences with the same optimal cost, you can output

    any of those. All of them are valid.

  6. You should code both the basic version and memory-efficient algorithm. Even

    though the memory-efficient version will pass all the bounds of the simple version, You must not use the memory-efficient version in both of the sub-problems.

  7. Your program should not print anything when it runs. It should only write to the output file.
  8. There is no specific requirement for the precision of Time and Memory float values.
  9. Time and Memory depend on so many factors such as CPU, Operating System, etc. So there might be differences in the output. Therefore, it will be evaluated subjectively. There must be a clear distinction in behavior between programs whose Time/ Memory complexity is O(n) vs O(n2) vs O(logn).

C. Regarding the plot

  1. Both the graphs are line graphs. X-axis represents problem size as m+n, where m and n are lengths of the generated string and Y-axis of Memory plot represents memory in KB, and Y-axis of Time Plot represents time in milliseconds. The 2 lines in the graph will represent stats of basic and memory-efficient algorithms.
  2. You can use any libraries/packages in any language to plot the graphs.
  3. You do not have to provide code for generating the plots. Only add images in the

    Summary.pdf

  • sequence-alignment-main-rmk8m8.zip