Your Cart
Loading

CSCI-570-Final Project

On Sale
$25.00
$25.00
Added to cart


The project is on the implementation of the two different solutions discussed in class for the Sequence Alignment problem. You can work in groups of 3 people or less. Plagiarism of any kind will be strictly monitored & reported as violation of academic integrity.


  1. Project Description


Implement the two solutions to the Sequence Alignment problem - the basic version using Dynamic programming, and the memory efficient version which combines DP with Divide-n-conquer. Run the test set provided and show your results.


  1. Problem review



Suppose we are given two strings and , where consists of the sequence of symbols 1 , 2 , ... , m and consists of the sequence of symbols 1 , 2 , ... , n. 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: for ( , ), ( ', ') ϵ if < ' , 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.


The similarity between and is based on the optimal alignment between and . Suppose is a given alignment between and :

  1. First, there is a parameter δ > 0 that defines a gap penalty. Each position of or that is not matched in is a gap, and we incur a cost of δ for it.


  1. Second, for each pair of letters , in our alphabet, there is a mismatch cost of αpq for matching with . Thus, for each ( , ) ϵ , we pay the appropriate mismatch cost αpq where p = xi and q = xj. One generally assumes that αpp = 0 for each letter —there is no mismatch cost to line up a letter with another copy of itself—although this assumption will not be necessary in anything that follows.
  2. Finally, the cost of is the sum of all of its gap and mismatch costs, and we seek an alignment having the minimum cost.



  1. Input string Generator



In order to potentially work with long strings as test inputs, we use a string generation method. Thus, any input to the program would be generated using a provided text file as follows:

  1. First line has a base string - let’s call it 0.


  1. Next lines consist of numbers that correspond to j steps we execute iteratively, each generating a new string, say strings 1, s2, …, sj , across the j steps, as follows. In step 1, we take the given integer n1 in line 1 (among the j lines), and insert a copy of 0 within itself, right after its index n1 (assuming 0-indexing). This gives us the string s1. Then, in step 2, we see the integer n2 in line 2, and insert s1 within itself right after its index n2, giving us string s2. Repeating this for j steps gives us sj which is the first string in our input for the alignment problem. Note that each step doubles the length of the string generated, thus, len(sj) = 2j * len(s0). See an illustrative example given below.


  1. The subsequent lines contain a base string t0 followed by k lines each containing a number. We use them as above to iteratively generate strings t1, t2, …, tk, with tk being the second string input for the alignment problem.



Thus, this text file could be used as an input to your program and your program should use the generation method above to get the actual input strings to be aligned. Note that need not equal for the string generation shown above. Consider the following input as example: ACTG


3


6


1


TACG


1


2


Following is the step by step process on how the final two strings are generated. First base string: ACTG


Insertion after index 3: ACTGACTG


Insertion after index 6: ACTGACTACTGACTGG


Insertion after index 1:ACACTGACTACTGACTGGTGACTACTGACTGG



Similarly,


TACG


TATACGCG


TATTATACGCGACGCG


TATTATACGCTATTATACGCGACGCGGACGCG


Thus, using the inputs above, the generated strings are ACACTGACTACTGACTGGTGACTACTGACTGG and TATTATACGCTATTATACGCGACGCGGACGCG which now need to be aligned.


  1. 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









  1. Programming/Scripting Languages


Following are the list of languages which could be used:


  1. C


  1. C++


  1. Java


  1. Python2


  1. Python3
  2. Bounds


  1. Basic Algorithm 0<= , <=10


1 <= ( 0), (t0) <= 2000


The values will also ensure that 1 <= ( j), (tk) <= 2000


  1. Memory Efficient Algorithm


0<= , <=20


1 <= ( 0), (t0) <= 20000 1 <= ( j), (tk) <= 20000



  1. Final output and submission format



A. Your program should take 2 arguments


  1. input file path


  1. 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 input strings. Since Gap penalty (δ) and Mismatch penalties (αpq) are FIXED, you have to hardcode them in your program.


You are not allowed to use any libraries that may be directly applicable to sequence alignment problem.



  1. Implement the basic version of the solution. Your program should print the following information at the respective lines in output file:


  1. Cost of the alignment (Integer)


  1. First string alignment ( Consists of A, C, T, G, _ (gap) characters)


  1. Second string alignment ( Consists of A, C, T, G, _ (gap) characters )


  1. Time in Milliseconds (Float)


  1. Memory in Kilobytes (Float)



Note: There can be multiple solutions which have the same cost. You can print ANY of them as generated by your program. The only condition is, it should have a minimum cost.

E.g., For strings A and C, alignments A_, _C and _A, C_ both have


alignment cost 60 which is minimum (indeed, in this case, they represent the same matching in two different ways). You can print any one of them.



  1. Implement the memory efficient version of this solution and repeat the tests as in Part B and produce output in the same format.



  1. 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.


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


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



  1. ​Submission


  1. 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) / ‘basic_3.py’ (Python 3)

  1. Memory efficient algorithm file


Name of the program file should be ‘efficient.c’ / ‘efficient.cpp’ / ‘Efficient.java’ / ‘efficient_2.py’ (Python 2) / ‘efficient_3.py’ (Python 3)

  1. Summary.pdf


It must contain following details


  1. datapoints output table (which are generated from provided input files)
  2. Two graphs and your insights from them


  1. Contribution from each group member, e.g., coding, testing, report etc. if everyone did not have equal contribution.


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


  1. 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



  1. The name of your zip file should have the USC IDs (not email ids) of everyone in your group separated by underscore. The zip file structure will look like
  • 1234567891_1234567892_1234567893.zip


  • 1234567891_1234567892_1234567893


  • basic_2.py


  • efficient_2.py


  • Summary.pdf


  • basic.sh


  • efficient.sh



IV. Grading


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


  1. Correctness of algorithms - 70 points


  1. Both programs (basic/ efficient) are correctly outputting file having all 5 lines in correct order: 15 points


  1. Basic Algorithm: 25 points


  1. Memory Efficient Algorithm: 30 points


Note: The goal of Part A is to check the correctness of alignment having minimum cost. Memory and Time will be evaluated in Part B.


  1. 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 reasonably match what you submitted in the Summary.pdf
  2. Correctness of the graph


  1. 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 etc.



  1. ​What is provided to you in the zip file?


  1. SampleTestCases folder containing sample input and output files


  1. Datapoint folder containing files to generate graph data points.


  1. Summary.docx file as template




VI. HINTS, NOTES, and FAQs




  1. Regarding Input and string generation


  1. We will never give an invalid input to your program. Input strings will only contain A, C, G, T. The insertion indices in the input will be valid numbers.


  1. The string generation mechanism is the same irrespective of the basic or the efficient version of the algorithm.
  2. 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 for consistency of submissions.



  1. Regarding Algorithm and output


  1. We strongly recommend to refer to lecture slides for the algorithm overview, and


NOT THE PSEUDOCODE PROVIDED IN KLEINBERG AND TARDOS textbook. In our prior experience, students opting for the latter reported lots of difficulties in implementation.


  1. DO NOT USE ANY LIBRARIES FOR WRITING YOUR ALGORITHMS barring the standard ones. If you are really unsure, ask us on piazza.
  2. Samples for time and memory calculation are provided. Please use them for consistency.
  3. Your solutions for the regular and memory-efficient algorithms should be in two different programs.
  4. There can be multiple valid sequences with the same optimal cost, you can output any of those. All of them are valid.
  5. 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, otherwise the plots will not show the expected distinctions.


  1. Your program must not print anything when it runs, only write to the output file.


  1. There is no specific requirement for the precision of Time and Memory float values.
  2. 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) etc.


  1. 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 input strings. Y-axis of Memory plot represents memory in KB. Y-axis of Time Plot represents time in milliseconds. The 2 lines in the graph will represent stats of basic and memory-efficient algorithms.


  1. You can use any libraries/packages in any language to plot the graphs.


  1. You do not have to provide code for generating the plots. Only add images in the Summary.pdf


  1. Regarding Submission


  1. Only 1 person in the group should submit the project. We will get the USC IDs of all the other team members from the filenames.
  2. To allow for grading the whole class in a reasonable amount of time, we will kill your program if it is stuck on a single input file for long (~few minutes).
  3. Regarding Shell File


To make the evaluation seamless on our end, please make sure you also have a shell script named ‘basic.sh’ and ‘efficient.sh’ with the commands required to run your program. For example, the contents of this file can be one of the following:

  1. Sample code for memory and time calculation


Python


import sys


from resource import * import time


import psutil


def process_memory():


process = psutil.Process() memory_info =


process.memory_info()


memory_consumed = int(memory_info.rss/1024) return


memory_consumed


def time_wrapper(): start_time =


time.time() call_algorithm()


end_time = time.time()


time_taken = (end_time - start_time)*1000 return time_taken





Java



private static double getMemoryInKB() {


double total = Runtime.getRuntime().totalMemory(); return (total-Runtime.getRuntime().freeMemory())/10e3;

}


private static double getTimeInMilliseconds() { return


System.nanoTime()/10e6;


}


double beforeUsedMem=getMemoryInKB(); double startTime = getTimeInMilliseconds();


alignment = basicSolution(firstString, secondString, delta, alpha);



double afterUsedMem = getMemoryInKB(); double endTime = getTimeInMilliseconds();


double totalUsage = afterUsedMem-beforeUsedMem; double totalTime = endTime - startTime;

C/C++



#include <sys/resource.h> #include


<errno.h> #include <stdio.h>



extern int errno;



// getrusage() is available in linux. Your code will be evaluated in Linux OS.


long getTotalMemory() { struct rusage


usage;


int returnCode = getrusage(RUSAGE_SELF, &usage); if(returnCode == 0) { return usage.ru_maxrss;


} else {


//It should never occur. Check man getrusage for more info to


debug.


// printf("error %d", errno); return -1;


}


}



int main() {



struct timeval begin, end; gettimeofday(&begin, 0);


//write your solution here







//Please call getTotalMemory() only after calling your solution function. It calculates max memory used by the program.

double totalmemory = getTotalMemory(); gettimeofday(&end, 0); long seconds = end.tv_sec - begin.tv_sec;


long microseconds = end.tv_usec - begin.tv_usec; double totaltime = seconds*1000 + microseconds*1e-3; printf("%f\n", totaltime); printf("%f\n", totalmemory);


}



You will get a ZIP (99KB) file