uiz Space

May 2024 term · Algorithmic Thinking in Bioinformatics · BSBT4001

Algorithmic Thinking in Bioinformatics End Term: 1 September 2024, Set QDB3 (May 2024 term)

The IIT Madras BS Algorithmic Thinking in Bioinformatics (Algorithmic Thinking in Bioinformatics) End Term paper sat on 1 Sept 2024, in the May 2024 term, set QDB3: 16 questions for 50 marks in 180 minutes. Every question is below with its answer. Take it as a timed mock test to be marked, or read it through first.

Questions
16
Marks
50
Duration
180 min
Numerical
6
MCQ
8
MSQ
2

Updated

Official paper: IIT M DEGREE AN EXAM QDB3 01 Sep 2024 · No negative marking.

Question 1

+2 marksNumerical answer

Consider a system of 6 genes that regulate each other as follows:

  • G1G_1 regulates G2G_2, G3G_3 and G4G_4.
  • G5G_5 is regulated by G3G_3 and G2G_2.
  • G2G_2 regulates G3G_3.
  • G3G_3 regulates G4G_4.
  • G6G_6 is regulated by G4G_4.

If we need 1 Byte to store a boolean value (i.e., 0 or 1), then how many Bytes are required to store the adjacency matrix of the underlying gene regulatory network?

Show answer

Correct answer: 36

Question 2

+2 marksNumerical answer
Show answer

Correct answer: 30

Question 3

+2 marksNumerical answer

In an alien world, mutations occur in every 10 million years only. A ultrametric tree is constructed on some of these alien species. If the height of the tree (defined as the maximum number of edges from the root to a leaf node in the tree) is 5, then calculate the age of the root node (in million years) of this ultrametric tree. (Hint: The distance between two nodes in consecutive levels is given in the question.)

Show answer

Correct answer: 50

Question 4

+2 marksNumerical answer

What is the number of free parameters that are learned in the EM setup of motif finding problem with an assumption of motif of length 5?

Show answer

Correct answer: 15

Question 5

+5 marksOne correct option
  1. A

    2, (2.5, 2.5), (7.33, 6)

  2. B

    3, (2.5, 2.5), (7.5, 6)

  3. C

    2, (2.5, 2.5), (7, 6)

  4. D

    3, (4, 2.5), (7.33, 6)

Show answer

Correct answer

  • A

    2, (2.5, 2.5), (7.33, 6)

Question 6

+5 marksOne correct option

A mass spectrometer generates the following Spectrum\mathit{Spectrum} for the peptide "Peptide=\mathit{Peptide} = CILA".

0 71 103 112 113 174 184 216 226 287 287 297 330 400

The figure given below depicts the mass of all amino acids.

GASPVTCILNDKQEMHFRYW
5771879799101103113113114115128128129131137147156163186

The criteria to trim peptides in the leaderboard based cyclopeptide sequencing algorithm is modified as follows:

"Suppose the algorithm is considering the peptide PP. Let the number of elements in the theoretical spectrum of PP be nn. If SCORE(P,Spectrum)<0.75∗n\text{SCORE}(P, \mathit{Spectrum}) < 0.75 * n, then the peptide is trimmed".

Which of the following peptides will be trimmed?

  1. A

    CI

  2. B

    LA

  3. C

    CIL

  4. D

    CIA

  5. E

    None of these

Show answer

Correct answer

  • C

    CIL

Question 7

+3 marksOne or more correct options

Which of the following statements about the EM algorithm is/are FALSE?

Select all that apply.

  1. A

    The EM algorithm is guaranteed to find the global maximum likelihood.

  2. B

    The E-step of the EM algorithm computes the posterior probabilities of the latent variables.

  3. C

    The E-step and M-step are iterated until the parameter estimates converge.

  4. D

    The EM algorithm cannot handle continuous data.

Show answer

Correct answers

  • A

    The EM algorithm is guaranteed to find the global maximum likelihood.

  • D

    The EM algorithm cannot handle continuous data.

Question 8

+3 marksOne correct option

You are studying the signalling pathway system of an alien world. Existing literature shows that information in the alien world is transmitted in the following procedure.
“A receptor protein in the cell membrane transmits information to a series of three kinase proteins that are sequentially activated inside the cell. The final activated kinase causes a transcription factor (TF) to get activated and translocated to the nucleus, wherein the TF protein regulates a target gene.” As part of your research, you construct the underlying signalling network, and want to find the most probable pathway along which a specific gene g will receive the information from a receptor on the cell membrane. Will it suffice to use 10 colors to determine the most probable pathway?

  1. A

    TRUE

  2. B

    FALSE

Show answer

Correct answer

  • A

    TRUE

Question 9

+3 marksOne correct option

Consider the below matrix that represents a one-hot encoded representation of an input sequence used by DeepBind. Decode the sequence and find the length of the motif detector kk.

[0.250.250.250.250.250.250.250.2500100100000100100.250.250.250.250.250.250.250.25]\begin{bmatrix} 0.25 & 0.25 & 0.25 & 0.25 \\ 0.25 & 0.25 & 0.25 & 0.25 \\ 0 & 0 & 1 & 0 \\ 0 & 1 & 0 & 0 \\ 0 & 0 & 0 & 1 \\ 0 & 0 & 1 & 0 \\ 0.25 & 0.25 & 0.25 & 0.25 \\ 0.25 & 0.25 & 0.25 & 0.25 \end{bmatrix}

  1. A
  2. B
  3. C
  4. D
Show answer

Correct answer

  • A

Question 10

+5 marksNumerical answer

Consider dynamic programming to do a manual alignment of the following sequences: AGTGT and TATGT. Fill up the score matrix (or grid) below, and calculate the number of entries in the matrix/grid with the value 3. The (i,j)th(i, j)^{\text{th}} entry in the grid corresponds to the score of the best-scoring alignment between the ii-length prefix of first string and jj-length prefix of second string. Scoring is done as follows:

  • For each match between two symbols: +1+1 point
  • For each mismatch between two symbols: 00 point
  • For each removal of symbol from any one sequence: 00 point
T 1A 2T 3G 4T 5
A 1
G 2
T 3
G 4
T 5
Show answer

Correct answer: 4

Question 11

+5 marksNumerical answer

Remember the episode of Tom and Jerry, where Jerry picks an orange cat and a dog ('Spike') and switches their personalities in the lab. Tom was shocked and could not believe that the orange cat was actually behaving like a dog. Imagine you are a friend of Tom, and you have to explain him that it is possible to switch personalities by mutating their genes. You find the synteny blocks in the chromosomes of the orange cat (henceforth denoted by Cat\mathit{Cat}), Tom and Spike as given below.

\begin{aligned} \mathit{Cat} &= {+4}\ {+5}\ {-1}\ {-3}\ {-2} \\ \mathit{Tom} &= {-3}\ {-2}\ {-1}\ {+5}\ {+4} \\ \mathit{Spike} &= {+1}\ {+2}\ {+3}\ {+4}\ {+5} \end{aligned} \tag{1}

Suppose Jerry's machine first runs an algorithm to determine the breakpoint graph and the sequence of transformations and then applies it on the species. Transforming a genome into another using nn operations (2-break operations: reversal, translocation, fusion or fission) takes nn minutes, as each 2-break operation takes 1 minute to apply. Assume the algorithm only uses the minimum number of transformations needed to convert a species into another. Use the breakpoint graph to determine the total number of minutes Jerry needed to mutate "Cat" into Spike.

Show answer

Correct answer: 2

Question 12

+3 marksOne or more correct options

The de Bruijn graph of some linear (i.e., non-circular) genome Dna comprises of 2 nodes (N1 and N2) and 6 edges – three of these edges are directed from N1 to N2 and the remaining three edges are directed from N2 to N1. To reconstruct Dna, you are allowed to start only from the node N1. Answer the given subquestions with respect to the same.

Suppose you don’t know the 2-mers representing N1 and N2. Then which of the following is/are possible choices for Dna?

Select all that apply.

  1. A

    TATATAAT

  2. B

    CACACAAC

  3. C

    ATATATAT

  4. D

    AGAGAGGG

  5. E

    TGTGTGTG

Show answer

Correct answers

  • C

    ATATATAT

  • E

    TGTGTGTG

Question 13

+2 marksOne correct option

The de Bruijn graph of some linear (i.e., non-circular) genome Dna comprises of 2 nodes (N1 and N2) and 6 edges – three of these edges are directed from N1 to N2 and the remaining three edges are directed from N2 to N1. To reconstruct Dna, you are allowed to start only from the node N1. Answer the given subquestions with respect to the same.

Which of the following statements is/are correct?
I. If we are allowed to start from N1 node only and the k-mers represented by both N1 and N2 are fixed, then there is exactly one genome sequence that can be reconstructed from this de Bruijn graph.
II. If we are allowed to start from either node and the k-mers represented by both N1 and N2 are fixed, then there are exactly two genome sequences that can be reconstructed from this de Bruijn graph.

  1. A

    Only I is correct

  2. B

    Only II is correct

  3. C

    Both I and II are correct

  4. D

    Neither I nor II is correct

Show answer

Correct answer

  • C

    Both I and II are correct

Question 14

+3 marksOne correct option

Based on the above data, answer the given subquestions.

Which of the following options is the original message?

  1. A
  2. B
  3. C
  4. D
  5. E
Show answer

Correct answer

  • E

Question 15

+3 marksOne correct option

Based on the above data, answer the given subquestions.

Choose the option representing the original suffix array of the message.

  1. A

    [12, 5, 11, 10, 0, 2, 4, 9, 1, 6, 3, 7, 8]

  2. B

    [12, 5, 11, 0, 10, 2, 4, 9, 1, 6, 3, 8, 7]

  3. C

    [12, 5, 11, 10, 0, 2, 4, 9, 1, 6, 3, 8, 7]

  4. D

    [12, 5, 10, 11, 0, 2, 4, 9, 1, 6, 3, 8, 7]

Show answer

Correct answer

  • D

    [12, 5, 10, 11, 0, 2, 4, 9, 1, 6, 3, 8, 7]

Question 16

+2 marksOne correct option
  1. A

    TRUE

  2. B

    FALSE

Show answer

Correct answer

  • B

    FALSE