Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In MATLAB, write a function seq_assemble_greedy( fastqfile ) that takes in a fastqfile containing short reads, implements the greedy algorithm of genome assembly, and returns

In MATLAB, write a function seq_assemble_greedy( fastqfile ) that takes in a fastqfile containing short reads, implements the greedy algorithm of genome assembly, and returns the assembled contigs as a cell array of texts (in python, return as a list of texts) merge these two reads into a single longer read. Repeat the previous step so long as at least two reads can be found sharing one or more residues overlap. Return the collection of extended merged reads you end up with.

Write a script seq_assemble_greedy_test that contains two tests for your function on two separate fastqfiles you created and prints the result of each test case.

short read 1 = ['DGH','GHIABCD','ABCDEFGHI','FGHIABCDE']

short read 2 = ['ABA','BBA','AAB','BAA','AAA']

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions