The program Profilemake can be used to produce a profile from an MSA.

The program Profilemake can be used to produce a profile from an MSA. Correct Answer True

A version of the Profilesearch program, which performs a database search for matches to a profile, is available at the University of Pittsburgh Supercomputer Center. A special grant application may be needed to use this facility. Profile-generating programs are available by FTP and are included in the Genetics Computer Group suite of programs.
Bissoy MCQ

Related Questions

Profiles are found by performing the _____ MSA of a group of sequences and then removing the _______ regions in the alignment into a smaller MSA.
What is the difference between the following 2 C codes?
#include  //Program 1int main(){ int d, a = 1, b = 2; d = a++ + ++b; printf("%d %d %d", d, a, b);}

#include  //Program 2int main(){ int d, a = 1, b = 2; d = a++ +++b; printf("%d %d %d", d, a, b);}