<?xml version='1.0'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:atom="http://www.w3.org/2005/Atom" >
<channel>
	<title><![CDATA[BOL: Neel's blogs]]></title>
	<link>https://bioinformaticsonline.com/blog/owner/neelam?offset=10</link>
	<atom:link href="https://bioinformaticsonline.com/blog/owner/neelam?offset=10" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/42921/run-bash-script-in-perl-program</guid>
	<pubDate>Sat, 27 Feb 2021 01:42:23 -0600</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/42921/run-bash-script-in-perl-program</link>
	<title><![CDATA[Run bash script in Perl program !]]></title>
	<description><![CDATA[<p>BioPerl is a compilation of Perl modules that can be used to build bioinformatics-related Perl scripts. It is used, for example, in the development of source codes, standalone software/tools, and algorithms in bioinformatics programmes. Different modules are easy to instal and include, making it easier to perform different functions. Despite the fact that Python is commonly favoured over Perl, some bioinformatics software, such as the standalone version of 'alienomics', is written in Perl. Often it's a major problem for beginners to execute certain Unix/shell commands in Perl script, so it's hard to determine which feature is unique to a situation.</p><div style="background-color: white;">Perl provides various features and operators for the execution of external commands (described as follows), which are unique in their own way.</div><div style="background-color: white;">&nbsp;</div><div style="background-color: white;">They vary slightly from one another, making it difficult for Perl beginners to choose between them.</div><div style="background-color: white;">&nbsp;</div><div style="background-color: white;"><strong>1. IPC::Open2</strong></div><p>More at https://bioinformaticsonline.com/snippets/view/42919/perl-ipcopen2-module</p><p><strong>2. exec&rdquo;&rdquo;</strong></p><p><em>&nbsp;syntax:&nbsp;</em><code>exec "command";</code></p><div style="background-color: #edfbff;">It's a Perl function (perlfunc) that executes a command but never returns, similar to a function's return statement.</div><div style="background-color: white;">While running the command, it keeps processing the script and does not wait until it finishes first, returns false when the command is not found, but never returns true.</div><p><strong>3. Backticks &ldquo; or qx//</strong></p><p><em>syntax:&nbsp;</em><code>`command`;</code></p><p><em>syntax:&nbsp;</em><code>qx/command/;</code></p><div style="background-color: white;">It's a Perl operator (perlop) that executes a command and then resumes the Perl script once the command has ended, but the return value is the command's STDOUT.</div><p><strong>4. IPC::Open3</strong></p><p><em>syntax:&nbsp;</em><code>$output =&nbsp;open3(\*CHLD_IN, \*CHLD_OUT, \*CHLD_ERR,&nbsp;'command arg1 arg2', 'optarg',...);</code></p><p style="text-align: justify;"><code></code>It is very similar to <code>IPC::Open2</code> with the capability to capture all three file handles of the process, i.e., STDIN, STDOUT, and STDERR. It can also be used with or without the shell. You can read about it more in the documentation: <a href="https://perldoc.perl.org/IPC/Open3.html" target="_blank">IPC::Open3</a>.</p><p><code>$output = open3(my $o ut,&nbsp;my $in, 'command arg1 arg2');</code></p><p>OR without using the shell</p><p><code>$output = open3(my $out,&nbsp;my $in, 'command', 'arg1', 'arg2');</code></p><p><strong>5.a2p</strong></p><p><em>syntax:&nbsp;</em><code>a2p [options] [awkscript]</code></p><p>There is a Perl utility known as <code>a2p</code> which translates <code>awk</code> command to Perl. It takes awk script as input and generates a comparable Perl script as the output. Suppose, you want to execute the following <code>awk</code> statement</p><p><code>awk '{$1 = ""; $2 = ""; print}' f1.txt</code></p><p>This statement gives error sometimes even after escaping the variables (\$1, \$2) but by using <code>a2p</code> it can be easily converted to Perl script:</p><p>For further information, you can read it&rsquo;s documentation: <code><a href="https://perldoc.perl.org/a2p.html" target="_blank">a2p</a></code></p><p>More help at https://bioinformaticsonline.com/snippets/view/42920/perl-script-to-run-awk-inside-perl</p><p><strong>6. system()</strong></p><p><em>syntax:&nbsp;</em><code>system( "command" );</code></p><p>It is also a Perl function (<a href="https://perldoc.perl.org/functions/system.html" target="_blank">perlfunc</a>) that executes a command and waits for it to get finished first and then resume the Perl script. The return value is the exit status of the command. It can be called in two ways:</p><p><code>system( "command arg1 arg2" );</code></p><p>OR</p><p><code>system( "command", "arg1", "arg2" );</code></p><p>HELP</p><p>Here are some useful Perl cheat sheets that can be used as a quick reference guide.--&nbsp;<a href="https://www.pcwdld.com/perl-cheat-sheet" target="_blank">https://www.pcwdld.com/perl-cheat-sheet</a></p>]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/41455/coronavirus-covid-%E2%80%9019-testing-sites-in-india</guid>
	<pubDate>Mon, 16 Mar 2020 16:13:41 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/41455/coronavirus-covid-%E2%80%9019-testing-sites-in-india</link>
	<title><![CDATA[Coronavirus COVID ‐19 Testing Sites In India]]></title>
	<description><![CDATA[<p>COVID-19 is a new illness that can affect your lungs and airways. It's caused by a virus called coronavirus.</p><h2>Stay at home if you have coronavirus symptoms</h2><p>Stay at home if you have either:</p><ul>
<li>a high temperature &ndash; you feel hot to touch on your chest or back</li>
<li>a new, continuous cough &ndash; this means you've started coughing repeatedly</li>
</ul><h2>DO NOT TAKE</h2><p><em>Ibrufen</em></p><p><em>https://amp.theguardian.com/world/2020/mar/14/anti-inflammatory-drugs-may-aggravate-coronavirus-infection</em></p><h2>How to avoid catching and spreading coronavirus (social distancing)</h2><p>Everyone should do what they can to stop coronavirus spreading.</p><p>It is particularly important for people who:</p><ul>
<li>are 70 or over</li>
<li>have a long-term condition</li>
<li>are pregnant</li>
<li>have a weakened immune system</li>
</ul><p><img src="https://www.hindustantimes.com/rf/image_size_960x540/HT/p2/2020/03/16/Pictures/_c0c377e0-6789-11ea-8a5c-cb364e4c5304.png" alt="image" width="960" height="543" style="border: 0px; border: 0px;"></p><p><strong>Below are the 52 Coronavirus COVID-19 Testing sites/locations in India.</strong></p><p>State:&nbsp;Andhra Pradesh&nbsp; &nbsp; &nbsp; &nbsp;</p><ol>
<li>Sri Venkateswara Institute of Medical Sciences, Tirupati</li>
<li>Andhra Medical College, Visakhapatnam, Andhra Pradesh</li>
<li>GMC, Anantapur, AP</li>
</ol><p>State:&nbsp;Andaman &amp; Nicobar islands</p><ol>
<li>Regional Medical Research Centre, Port Blair, Andaman, and Nicobar</li>
</ol><p>State:&nbsp;Assam</p><ol>
<li>Gauhati Medical College, Guwahati</li>
<li>&nbsp;Regional Medical Research Center, Dibrugarh</li>
</ol><p>State:&nbsp;Bihar</p><ol>
<li>Rajendra Memorial Research Institute of Medical Sciences, Patna</li>
</ol><p>State: Chandigarh</p><ol>
<li>Post Graduate Institute of Medical Education &amp; Research, Chandigarh</li>
</ol><p>State: Chhattisgarh</p><ol>
<li>All India Institute Medical Sciences, Raipur</li>
</ol><p>Union Territory: Delhi-NCT&nbsp;</p><ol>
<li>All India Institute Medical Sciences, Delhi</li>
<li>National Centre for Disease Control, Delhi</li>
</ol><p>State: Gujarat</p><ol>
<li>BJ Medical College, Ahmedabad</li>
<li>M.P.Shah Government Medical College, Jamnagar</li>
</ol><p>State: Haryana</p><ol>
<li>Pt. B.D. Sharma Post Graduate Inst. of Med. Sciences, Rohtak, Haryana</li>
<li>BPS Govt Medical College, Sonipat</li>
</ol><p>State: Himachal Pradesh</p><ol>
<li>Indira Gandhi Medical College, Shimla, Himachal Pradesh</li>
<li>Dr.Rajendra Prasad Govt. Med. College, Kangra, Tanda, HP</li>
</ol><p>Union Territory: Jammu and Kashmir</p><ol>
<li>Sher‐e‐ Kashmir Institute of Medical Sciences, Srinagar</li>
<li>Government Medical College, Jammu</li>
</ol><p>State: Jharkhand</p><ol>
<li>MGM Medical College, Jamshedpur</li>
</ol><p>State: Karnataka</p><ol>
<li>Bangalore Medical College &amp; Research Institute, Bangalore</li>
<li>National Institute of Virology Field Unit Bangalore</li>
<li>Mysore Medical College &amp; Research Institute, Mysore</li>
<li>Hassan Inst. of Med. Sciences, Hassan, Karnataka</li>
<li>Shimoga Inst. of Med. Sciences, Shivamogga, Karnataka</li>
</ol><p>State: Kerala</p><ol>
<li>National Institute of Virology Field Unit, Kerala</li>
<li>Govt. Medical College, Thiruvananthapuram, Kerala</li>
<li>Govt. Medical College, Kozhikode, Kerala</li>
</ol><p>State: Madhya Pradesh</p><ol>
<li>All India Institute Medical Sciences, Bhopal</li>
<li>National Institute of Research in Tribal Health (NIRTH), Jabalpur</li>
</ol><p>State: Meghalaya</p><ol>
<li>NEIGRI of Health and Medical Sciences, Shillong, Meghalaya</li>
</ol><p>State: Maharashtra</p><ol>
<li>Indira Gandhi Government Medical College, Nagpur</li>
<li>Kasturba Hospital for Infectious Diseases, Mumbai</li>
</ol><p>State: Manipur</p><ol>
<li>J N Inst. of Med. Sciences Hospital, Imphal‐East, Manipur</li>
</ol><p>State: Odisha</p><ol>
<li>Regional Medical Research Center, Bhubaneswar</li>
</ol><p>Union Territory: Puducherry</p><ol>
<li>Jawaharlal Institute of Postgraduate Medical Education &amp; Research, Puducherry</li>
</ol><p>State: Punjab</p><ol>
<li>Government Medical College, Patiala, Punjab</li>
<li>Government Medical College, Amritsar</li>
</ol><p>State: Rajasthan</p><ol>
<li>Sawai Man Singh, Jaipur</li>
<li>Dr. S.N Medical College, Jodhpur</li>
<li>Jhalawar Medical College, Jhalawar, Rajasthan</li>
<li>SP Med. College, Bikaner, Rajasthan</li>
</ol><p>State: Tamil Nadu</p><ol>
<li>King&rsquo;s Institute of Preventive Medicine &amp; Research, Chennai</li>
<li>Government Medical College, Theni</li>
</ol><p>State: Tripura</p><ol>
<li>Government Medical College, Agartala</li>
</ol><p>State: Telangana</p><ol>
<li>Gandhi Medical College, Secunderabad</li>
</ol><p>State: Uttar Pradesh</p><ol>
<li>King&rsquo;s George Medical University, Lucknow</li>
<li>Institute of Medical Sciences, Banaras, Hindu University, Varanasi</li>
<li>Jawaharlal Nehru Medical College, Aligarh</li>
</ol><p>State: Uttarakhand</p><ol>
<li>Government Medical College, Haldwani</li>
</ol><p>State: West Bengal</p><ol>
<li>National Institute of Cholera and Enteric Diseases, Kolkata</li>
<li>IPGMER, Kolkata</li>
</ol>]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/38238/list-of-motif-discovery-tools</guid>
	<pubDate>Tue, 20 Nov 2018 03:54:26 -0600</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/38238/list-of-motif-discovery-tools</link>
	<title><![CDATA[List of motif discovery tools !]]></title>
	<description><![CDATA[<div><div>In genetics, a sequence motif is a nucleotide or amino-acid sequence pattern that is widespread and has, or is conjectured to have, a biological significance. For proteins, a sequence motif is distinguished from a structural motif, a motif formed by the three-dimensional arrangement of amino acids which may not be adjacent.</div><div>&nbsp;</div><div>Following are the list of tools for motif discovery:</div><div>&nbsp;</div><div><a href="http://genius.embnet.dkfz-heidelberg.de/menu/biounit/open-husar/">2Dsweep -- protein annotation by secondary structure elements</a></div><p>Perform secondary structure predictions on protein sequences.</p></div><div><div><a href="http://floresta.eead.csic.es/3dfootprint/">3D-footprint -- database of DNA-binding protein structures</a></div><p>Find binding specificity information about DNA-protein complexes.</p></div><div><div><a href="http://floresta.eead.csic.es/3dfootprint/">3D-footprint: DNA-binding protein database</a></div><p>Find information about the binding specificity of DNA-binding proteins.</p></div><div><div><a href="http://3d-partner.life.nctu.edu.tw/">3D-partner -- a web server to infer interacting partners and binding models</a></div><p>Predict interacting partners and binding models.</p></div><div><div><a href="http://motif.stanford.edu/distributions/3motif/">3MOTIF -- a protein structure visualization system for conserved sequence motifs</a></div><p>Use this web-based sequence motif visualization system to display sequence motif information in its appropriate three-dimensional (3D) context.</p></div><div><div><a href="http://bioinfo.mpiz-koeln.mpg.de/afawe/">AFAWE -- Automatic functional annotation in a distributed Web Services Environment</a></div><p>Protein function prediction and annotation in an integrated environment powered by web service.</p></div><div><div><a href="http://anchor.enzim.hu/">ANCHOR -- Prediction of Protein Binding Regions in Disordered Proteins</a></div><p>Find information about protein binding.</p></div><div><div><a href="http://annie.bii.a-star.edu.sg/annie/home.do">ANNIE -- ANNotation and Interpretation Environment for Protein Sequences</a></div><p>Use to predict function from de novo protein sequences.</p></div><div><div><a href="http://bioinformatica.isa.cnr.it/ASC/">Active Sequences Collection (ASC) database -- A new tool to assign functions to protein sequences</a></div><p>Search for short active protein sequences with demonstrated biological activities.</p></div><div><div><a href="http://blocks.fhcrc.org/">Blocks -- Ungapped segments in conserved protein sequences</a></div><p>Search for ungapped segments corresponding to the most highly conserved regions of proteins.</p></div><div><div><a href="http://cast.engr.uic.edu/">CASTp -- computed atlas of surface topography of proteins with structural and topographical mapping of functionally annotated residues</a></div><p>Identify and measure surface accessible pockets as well as interior inaccessible cavities, for proteins and other molecules.</p></div><div><div><a href="http://www.ebi.ac.uk/thornton-srv/databases/CSA">CSA -- The Catalytic Site Atlas</a></div><p>To search for catalytic residue annotation for enzymes in the Protein Data Bank.</p></div><div><div><a href="http://www.sbg.bio.ic.ac.uk/~confunc/">ConFunc -- Conserved residue Protein Function Prediction Server</a></div><p>Predict protein function using Gene Ontology.</p></div><div><div><a href="http://consurf.tau.ac.il/">ConSurf-DB -- evolutionary conservation profiles of protein structures database</a></div><p>Automatically calculate evolutionary conservation scores of key amino acid residues and map them on protein structures.</p></div><div><div><a href="http://salilab.org/DBAli/">DBAli -- A Database of Structure Alignments</a></div><p>Mine the protein structure space.</p></div><div><div><a href="http://dilimot.embl.de/">DILIMOT -- discovery of linear motifs in proteins</a></div><p>Predict short linear motifs (3-8 residues) in a set of protein sequences.</p></div><div><div><a href="http://www.ebi.ac.uk/dasty/">Dasty2 -- an Ajax protein DAS client</a></div><p>A web client for visualizing protein sequence feature information using DAS.</p></div><div><div><a href="http://genius.embnet.dkfz-heidelberg.de/menu/biounit/open-husar/">DomainSweep -- protein annotation by domain analysis</a></div><p>Identify the domain architecture within a protein sequence.</p></div><div><div><a href="http://e1ds.csbb.ntu.edu.tw/">E1DS -- catalytic site prediction based on 1D signatures of concurrent conservation</a></div><p>Predict enzyme catalytic site.</p></div><div><div><a href="http://elm.eu.org/">ELM -- Eukarotic Linear Motif Resource</a></div><p>Predict functional sites in eukaryotic proteins.</p></div><div><div><a href="http://us.expasy.org/tools/#proteome">EXPASY Proteome Tools Collection</a></div><p>Use a collection of tools for protein analyses.</p></div><div><div><a href="http://us.expasy.org/tools/findmod/">EXPASY-Findmod</a></div><p>Predict potential protein post-translational modifications and find potential single amino acid substitutions in peptides.</p></div><div><div><a href="http://mbs.cbrc.jp/EzCatDB/">EzCatDB -- the Enzyme Catalytic-mechanism Database</a></div><p>Search for information related to the catalytic mechanisms of enzymes.</p></div><div><div><a href="http://bioinf.cs.ucl.ac.uk/ffpred/">FFPred -- feature-based function prediction</a></div><p>An integrated feature-based function prediction server for vertebrate proteomes.</p></div><div><div><a href="http://www.ebi.ac.uk/printsscan/">FingerPRINT Scan</a></div><p>Identify the closest matching PRINTS sequence motif fingerprints in a protein sequence.</p></div><div><div><a href="http://firedb.bioinfo.cnio.es/">FireDB -- a database of functionally important residues from proteins of known structure</a></div><p>Search for functional annotation of important sites in proteins with known structures.</p></div><div><div><a href="http://bioserv.rpbs.univ-paris-diderot.fr/cgi-bin/Frog2">Frog2 -- a FRee Online druG 3D conformation generator</a></div><p>Produce 3D conformations of small drug compounds.</p></div><div><div><a href="http://www.hgpd.jp/">HGPD -- Human Gene and Protein Database</a></div><p>A database presenting experiment-based results in human proteomics.</p></div><div><div><a href="http://hhsenser.tuebingen.mpg.de/">HHsenser -- exhaustive transitive profile search using HMMx96HMM comparison</a></div><p>Conduct exhaustive intermediate profile searches of a set of homologous protein sequences.</p></div><div><div><a href="http://loschmidt.chemi.muni.cz/hotspotwizard/">HotSpot Wizard -- Substrate Specificity Hot Spot Identification web server</a></div><p>Design protein mutations in site-directed mutagenesis.</p></div><div><div><a href="http://phylogenomics.berkeley.edu/intrepid/">INTREPID -- INformation-theoretic TREe traversal for Protein functional site IDentification</a></div><p>Use for protein functional site identification.</p></div><div><div><a href="http://www.cbs.dtu.dk/">Integrating protein annotation resources through the Distributed Annotation System</a></div><p>Annotate protein using this integrated annotation resource.</p></div><div><div><a href="http://www.ebi.ac.uk/InterProScan/">InterProScan -- protein domains identifier</a></div><p>Identify protein family (and DNA) domains, patterns, motifs, protein families, and functional sites.</p></div><div><div><a href="http://kfc.mitchell-lab.org/">KFC -- Knowledge-based FADE and Contacts</a></div><p>Interactive forecasting of protein interaction hot spots.</p></div><div><div><a href="http://biominer.bime.ntu.edu.tw/magiicpro/">MAGIIC-PRO -- detecting functional signatures by efficient discovery of long patterns in protein sequences</a></div><p>Discover long patterns in protein sequences.</p></div><div><div><a href="http://prodata.swmed.edu/malisam">MALISAM -- Manual ALIgnments for Structurally Analogous Motifs</a></div><p>Database containing pairs of structural analogs and their alignments.</p></div><div><div><a href="http://meme.nbcr.net/">MEME -- discovering and analyzing DNA and protein sequence motifs</a></div><p>Find sequence patterns in DNA and protein sequences.</p></div><div><div><a href="http://www.nii.res.in/modpropep.html">MODPROPEP -- a program for knowledge-based modeling of protein-peptide complexes</a></div><p>A web server for knowledge-based modeling of protein-peptide complexes, specifically peptides in complex with major histocompatibility complex (MHC) proteins and kinases.</p></div><div><div><a href="http://www.bioinfo.tsinghua.edu.cn/~tigerchen/memo.html">MeMo -- a web tool for prediction of protein methylation modifications</a></div><p>Predict protein methylation sites.</p></div><div><div><a href="http://caps.ncbs.res.in/MegaMotifbase/index.html">MegaMotifBase -- a database of structural motifs in protein families and superfamilies</a></div><p>Find structural segments or motifs for protein structures.</p></div><div><div><a href="http://mnm.engr.uconn.edu/MNM/SMSSearchServlet">Minimotif Miner -- a tool for investigating protein function</a></div><p>Find motifs in a protein sequence.</p></div><div><div><a href="http://umber.sbs.man.ac.uk/dbbrowser/motif3d/motif3d.html">Motif3D -- Relating protein sequence motifs to 3D structure</a></div><p>Visualize protein sequence motifs on the 3D protein structures.</p></div><div><div><a href="http://myhits.isb-sib.ch/cgi-bin/motif_scan">MotifScan</a></div><p>Find presence of any known protein motif (Prosite and Pfam) in a protein sequence.</p></div><div><div><a href="http://bioinfo3d.cs.tau.ac.il/MultiBind">MultiBind -- Multiple Alignment of Protein Binding Sites</a></div><p>Recognize spatial chemical binding patterns common to a set of protein structures.</p></div><div><div><a href="http://mendel.imp.univie.ac.at/myristate/SUPLpredictor.htm">NMT -- The MYR Predictor</a></div><p>Analyze proteins for the presence of N-terminal N-myristoylation site.</p></div><div><div><a href="http://www.cbs.dtu.dk/services/NetNGlyc/">NetNGlyc -- N-Glycosylation sites prediction tool</a></div><p>Find the presence of N-Glycosylation sites in human proteins.</p></div><div><div><a href="http://www.cbs.dtu.dk/services/NetOGlyc/">NetOGly 3.1 -- O-glycosylation sites prediction tool</a></div><p>Find the presence of O-GalNAc (mucin type) glycosylation sites in mammalian proteins.</p></div><div><div><a href="http://www.cbs.dtu.dk/services/NetPhos/">NetPhos 2.0 -- Phosphorylation sites predictions</a></div><p>Analyze eukaryotic proteins for the presence of serine, threonine and tyrosine phosphorylation sites.</p></div><div><div><a href="http://www.cbs.dtu.dk/services/NetPhosK/">NetPhosK 1.0 Server -- kinase specific eukaryotic protein phosphorylation sites prediction tool</a></div><p>Find possible kinase specific phosphorylation sites in eukaryotic proteins.</p></div><div><div><a href="http://networkin.info/search.php">NetworKIN -- a resource for exploring cellular phosphorylation networks</a></div><div>&nbsp;</div></div><div><div><a href="http://neuroproteomics.scs.uiuc.edu/neuropred.html">NeuroPred -- a tool to predict cleavage sites in neuropeptide precursors and provide the masses of the resulting peptides</a></div><p>Predict cleavage sites at basic amino acid locations in neuropeptide precursor sequences.</p></div><div><div><a href="http://www.ebi.ac.uk/patentdata/nr/">Non-Redundant Patent Sequences - Patented Sequence Database</a></div><p>Find information about patented nucleotide and protein sequences.</p></div><div><div><a href="http://www.cbs.dtu.dk/databases/OGLYCBASE/">O-GLYCBASE</a></div><p>Search for information about glycoproteins with O-linked and C-linked glycosylation sites.</p></div><div><div><a href="http://www.pandora.cs.huji.ac.il/">PANDORA -- Protein ANnotation Diagram ORiented Analysis</a></div><p>Find information about protein sequence annotations.</p></div><div><div><a href="http://sunserver.cdfd.org.in:8080/protease/PAR_3D/index.html">PAR-3D -- Protein Active site Residue - 3D structural motif</a></div><p>A server to predict protein active site residues.</p></div><div><div><a href="http://wwwmgs.bionet.nsc.ru/mgs/gnw/pdbsite/">PDBSite -- a database of the 3D structure of protein functional sites</a></div><p>Search for structural and functional information on the protein functional sites.</p></div><div><div><a href="http://wwwmgs.bionet.nsc.ru/mgs/systems/fastprot/pdbsitescan.html">PDBSiteScan -- A program for searching for active, binding and posttranslational modification sites in the 3D structures of proteins</a></div><p>Search 3D protein fragments similar in structure to known active, binding and posttranslational modification sites.</p></div><div><div><a href="http://pedant.gsf.de/">PEDANT -- Protein Extraction, Description and ANalysis Tool</a></div><p>Conduct genome wide functional and structural analysis.</p></div><div><div><a href="http://phosida.org/">PHOSIDA -- Phosphorylation site database</a></div><p>Search for phosphorylation data of any protein of interest.</p></div><div><div><a href="http://www.phosphorylation.biochem.vt.edu/">PHOSPHORYLATION SITE DATABASE</a></div><p>Search for information on prokaryotic proteins that undergo serine, threonine, or tyrosine phosphorylation.</p></div><div><div><a href="http://www.jcvi.org/pn-utility/web/smarty_wrapper/about.php">PNU -- Protein Naming Utility</a></div><p>Determine correct names for proteins.</p></div><div><div><a href="http://mbs.cbrc.jp/poodle/poodle-s.html">POODLE-S -- Predicition Of Order and Disorder by machine LEarning</a></div><p>Web application for predicting protein disorder by using physicochemical features and reduced amino acid set of a position-specific scoring matrix.</p></div><div><div><a href="http://gemdock.life.nctu.edu.tw/ppisearch/">PPISearch -- Protein-Protein Interaction Search</a></div><p>Find homologous protein-protein interactions across multiple species.</p></div><div><div><a href="http://www.ebi.ac.uk/ppsearch/">PPSearch</a></div><p>Search your query sequence against PROSITE pattern database for protein motifs.</p></div><div><div><a href="http://pridb.gdcb.iastate.edu/">PRIDB -- Protein-RNA Interface DataBase</a></div><p>Find information about protein-RNA complexes from the Protein Data Bank (PDB).</p></div><div><div><a href="http://umber.sbs.man.ac.uk/dbbrowser/PRINTS/">PRINTS and its automatic supplement, prePRINTS -- A compendium of protein fingerprints</a></div><p>Search for protein fingerprints.</p></div><div><div><a href="http://www.expasy.org/prosite/">PROSITE</a></div><p>Identify protein families and domains for a given protein sequence.</p></div><div><div><a href="http://www.imtech.res.in/raghava/prrdb/">PRRDB -- Pattern Recognition Receptor Database</a></div><p>A comprehensive database of pattern-recognition receptors and their ligands.</p></div><div><div><a href="http://www.arabidopsis.org/cgi-bin/patmatch/nph-patmatch.pl">PatMatch -- a program for finding patterns in peptide and nucleotide sequences</a></div><p>Search for short nucleotide or peptide sequences such as cis-elements in nucleotide sequences or small domains and motifs in protein sequences.</p></div><div><div><a href="http://pepcyber.umn.edu/PPEP/">PepCyber:P~PEP -- a database of human protein protein interactions mediated by phosphoprotein-binding domains</a></div><p>Database specialized in documenting human PPBD-containing proteins and PPBD-mediated interactions.</p></div><div><div><a href="http://us.expasy.org/tools/peptidecutter/">PeptideCutter -- protein cleavage sites prediction tool</a></div><p>Predicts potential protease cleavage sites and sites cleaved by chemicals in a given protein sequence.</p></div><div><div><a href="http://phobius.binf.ku.dk/">Phobius -- A combined transmembrane topology and signal peptide predictor</a></div><p>Predict combined transmembrane topology and signal peptides.</p></div><div><div><a href="http://phospho.elm.eu.org/">Phospho.ELM -- a database of phosphorylation sites</a></div><p>Search for eukaryotic phosphorylation sites.</p></div><div><div><a href="http://www.phospho3d.org/">Phospho3D -- a database of three-dimensional structures of protein phosphorylation sites</a></div><p>Search for 3D structure and functional annotation of phosphorylation sites in proteins.</p></div><div><div><a href="http://www.phosphosite.org/">PhosphoSite -- A bioinformatics resource dedicated to physiological protein phosphorylation.</a></div><p>Search the database of in vivo phosphorylation sites of human and mouse proteins</p></div><div><div><a href="http://pxgrid.med.monash.edu.au/polyq/">PolyQ -- Polyglutamine Database</a></div><p>Find information about polyglutamine (polyQ) repeats.</p></div><div><div><a href="http://www.ebi.ac.uk/pratt/">Pratt Protein motif and pattern discovery</a></div><p>Find the presence of protein motifs and patterns in an amino acid sequence.</p></div><div><div><a href="http://www.predisi.de/">PrediSi -- Prediction of Signal Peptides and their Cleavage Positions</a></div><p>Predict signal peptide sequences and their cleavage positions in bacterial and eukaryotic amino acid sequences.</p></div><div><div><a href="http://www.ebi.ac.uk/thornton-srv/databases/ProFunc/">ProFunc -- a server for predicting protein function from 3D structure</a></div><p>Predict protein functions based on known structures.</p></div><div><div><a href="http://bioinfo41.weizmann.ac.il/promate/promateus.html">ProMateus--an open research approach to protein-binding sites analysis</a></div><p>Predict the location of potential protein-protein binding sites for unbound proteins.</p></div><div><div><a href="http://www.proteus.cs.huji.ac.il/">ProTeus -- identifying signatures in protein termini</a></div><p>Identify short linear signatures in protein termini.</p></div><div><div><a href="http://genius.embnet.dkfz-heidelberg.de/menu/cgi-bin/w2h-open/w2h.open/w2h.startthis?SIMGO=w2h%2ewelcome">ProtSweep -- protein annotation by homology</a></div><p>Analyze and identify newly obtained protein sequences.</p></div><div><div><a href="http://protemot.csbb.ntu.edu.tw/">Protemot -- prediction of protein binding sites with automatically extracted geometrical templates</a></div><p>Predict protein binding sites in a protein sequence based on geometrical analysis of protein tertiary substructures.</p></div><div><div><a href="http://quasimotifinder.tau.ac.il/">QuasiMotiFinder -- protein annotation by searching for evolutionarily conserved motif-like patterns</a></div><p>Search for evolutionarily conserved motif-like patterns in protein sequences.</p></div><div><div><a href="http://bindr.gdcb.iastate.edu/RNABindR">RNABindR -- software for prediction of RNA binding residues in proteins</a></div><p>Web-based server for analyzing and predicting RNA binding sites in proteins.</p></div><div><div><a href="http://caps.ncbs.res.in/scanmot/scanmot.html">SCANMOT -- searching for similar sequences using a simultaneous scan of multiple sequence motifs</a></div><p>Search for similarities between proteins by simultaneous matching of multiple motifs.</p></div><div><div><a href="http://bioinf.fbb.msu.ru/SDPpred/">SDPpred -- A Tool for Prediction of Amino Acid Residues that Determine Differences in Functional Specificity of Homologous Proteins</a></div><p>Predict residues in protein sequences that determine the proteins' functional specificity.</p></div><div><div><a href="http://tamm.mit.edu/SDR/">SDR -- Specificity Determining Residues Database</a></div><p>Predict specificity-determining residues in protein families.</p></div><div><div><a href="http://bioware.ucd.ie/~slimdisc/">SLiMDisc -- Short, Linear Motif Discovery</a></div><p>Find shared motifs in proteins with a common attribute.</p></div><div><div><a href="http://sumosp.biocuckoo.org/">SUMOsp -- a web server for sumoylation site prediction</a></div><p>Conduct in silico sumoylation sites prediction.</p></div><div><div><a href="http://oxytricha.princeton.edu/SWAKK/">SWAKK -- a web server for detecting positive selection in proteins using a sliding window substitution rate analysis</a></div><p>Detect protein sequence section under positive evolution selection.</p></div><div><div><a href="http://www.expasy.org/tools/scanprosite/">ScanProsite</a></div><p>Search for motifs and patterns within protein sequences.</p></div><div><div><a href="http://www.expasy.org/tools/scanprosite/">ScanProsite -- detection of PROSITE signature matches and ProRule-associated functional and structural residues in proteins</a></div><p>Detect patterns, profiles and motifs in a protein sequence.</p></div><div><div><a href="http://scansite.mit.edu/">ScanSite 2.0 -- Proteome-wide prediction of cell signaling interactions using short sequence motifs</a></div><p>Search for motifs within proteins that are likely to be phosphorylated by specific protein kinases or bind to domains such as SH2 domains, 14-3-3 domains or PDZ domains.</p></div><div><div><a href="http://sepresa.bio-x.cn/">SePreSA -- SErver for the PREdiction of populations susceptible to Serious Adverse drug reaction</a></div><p>Find information about populations carrying polymorphisms within protein binding pockets that make them susceptible to serious adverse drug reaction (SADR).</p></div><div><div><a href="http://motif.genome.jp/">Sequence Motif Search</a></div><p>Search the presence of a motif in either amino acid sequence or nucleotide sequence.</p></div><div><div><a href="http://www.csbio.sjtu.edu.cn/bioinf/Signal-3L/">Signal-3L -- A 3-layer approach for predicting signal peptides</a></div><p>Predict signal peptides.</p></div><div><div><a href="http://www.cbs.dtu.dk/services/SignalP/">SignalP -- Machine learning approaches to the prediction of signal peptides, their cleavage sites, and other protein sorting signals</a></div><p>Predict signal peptides and their cleavage sites.</p></div><div><div><a href="http://us.expasy.org/tools/sulfinator/">Sulfinator -- tyrosine sulfation sites prediction tool</a></div><p>Predict the presence of tyrosine sulfation sites in protein sequences</p></div><div><div><a href="http://bioinf-services.charite.de/supersite/">SuperSite -- Ligand Binding Site Database</a></div><p>Look at protein structure from a ligand and binding site perspective.</p></div><div><div><a href="http://www.ch.embnet.org/">Swiss EMBnet node web server</a></div><p>Use a collection of bioinformatics tools at this portal site.</p></div><div><div><a href="http://bioinfo.montp.cnrs.fr/?r=t-reks">T-REKS -- identification of Tandem REpeats in sequences with a K-meanS based algorithm</a></div><p>Find information about tandem repeats in proteins that carry fundamental biological functions and are related to a number of human diseases.</p></div><div><div><a href="http://tmbeta-genome.cbrc.jp/TMFunction/">TMFunction -- The Functional Database of Membrane Proteins</a></div><p>Find information about functional residues in alpha-helical and beta-barrel membrane proteins.</p></div><div><div><a href="http://topdom.enzim.hu/">TOPDOM -- Conservatively Located Domains and Motifs in Transmembrane Proteins</a></div><p>Database of domains and motifs with conservative location in transmembrane proteins.</p></div><div><div><a href="http://motif.stanford.edu/distributions/emotif/">The EMOTIF database</a></div><p>Search for highly conserved and specific protein sequence motifs.</p></div><div><div><a href="http://treedetv2.bioinfo.cnio.es/treedet/index.html">TreeDet -- Predicting Functional Residues in Protein Sequence Alignments</a></div><p>Predict functional sites in protein sequence alignments use different methodologies.</p></div><div><div><a href="http://motif.bmi.ohio-state.edu/ChIPMotifs/">W-ChIPMotifs -- ChIP-based protein Motif discovery web server</a></div><p>Find de novo protein motifs from chromatin immunoprecipitation data.</p></div><div><div><a href="http://feature.stanford.edu/webfeature/">WebFEATURE -- an interactive web tool for identifying and visualizing functional sites on macromolecular structures</a></div><p>Scan query structures for functional sites in both proteins and nucleic acids.</p></div><div><div><a href="http://wwwmgs.bionet.nsc.ru/mgs/programs/panalyst/">WebProAnalyst -- an interactive tool for analysis of quantitative structurex96activity relationships in protein families</a></div><p>Analyze quantitative structure-activity relationship of related protein families.</p></div><div><div><a href="http://motif.stanford.edu/distributions/eblocks/">eBLOCKs -- enumerating conserved protein blocks to achieve maximal sensitivity and specificity</a></div><p>Search for ungapped alignments of highly conserved regions among a protein family or superfamily.</p></div><div><div><a href="http://ef-site.hgc.jp/eF-seek/">eF-seek -- prediction of the functional sites of proteins by searching for similar electrostatic potential and molecular surface shape</a></div><p>Predict the functional sites of proteins.</p></div><div><div><a href="http://firedb.bioinfo.cnio.es/Php/FireStar.php">firestar -- prediction of functionally important residues using structural templates and alignment reliability</a></div><p>An expert system for predicting ligand-binding residues in protein structures.</p></div><div><div><a href="http://caps.ncbs.res.in/imotdb/">iMOTdb -- a comprehensive collection of spatially interacting motifs in proteins</a></div><p>Automatically identify spatially interacting motifs among distantly related proteins sharing similar folds and possessing common ancestral lineage.</p></div>]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/34727/letter-of-motivation-for-bioinformatics-applicants</guid>
	<pubDate>Thu, 21 Dec 2017 03:43:04 -0600</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/34727/letter-of-motivation-for-bioinformatics-applicants</link>
	<title><![CDATA[Letter of motivation for bioinformatics applicants !]]></title>
	<description><![CDATA[<p>A motivation letter, or sometimes called letter of motivation or motivational letter, is actually a letter being send together with your professional resume to support your application for job, University admission or internship. The motivational letter is actually a personal statement which should persuade selection panel, or human resource clerk that you are perfect candidate for a position. Writing a impressive &lsquo;Letter of Motivation&rsquo; might help you to get the post with an ease.&nbsp;</p><p>Usually when you apply anywhere you need to fulfill some specific kind of requirements which usually include writing a formal application, letter of motivation, research proposal etc. Usually it is hard for grad students to write a crisp, clean and clear letter of motivation. To be honest, you may find several posts on the internet which do tell you how to write professionally. They are good enough to clearly tell you what points should be included, what not and many other things to learn about professional writing. Still, when I look back at my graduation days, I know even after reading many instructions I was not able to write &lsquo;to-the-point&rsquo;. According to me , writing skill is not something that you can part in binary like- &lsquo;I write perfectly&rsquo; or &lsquo;I can not write even a word&rsquo;. It is something that you learn and get better with the the time. So, I am not going to pin-point the suggestions because you can get it many where but some &lsquo;to-the-point&rsquo; things which you may use directly in your letter.</p><h5>Ideas and main points</h5><p>Start with writing down some of the main ideas, important points you would like to approach in your letter and later build around them, enrich their content; an example would be :</p><ol>
<li>Make your goal clear; provide a short preview of the rest of the letter;</li>
<li>Why do you think that the university and the Master's program are interesting and suitable for you? ;</li>
<li>Focus on some of your strongest qualifications, past experiences (international experiences are always relevant) and qualities; organise the middle paragraphs in terms of the qualifications most relevant to the programme, you can also refer to your CV for more details;</li>
<li>Conclude by restating your interest and show appreciation for the chance to prove yourself in the letter (in some cases you can ask for a personal interview)</li>
</ol><p>How to start- <br />Your very first line should not be just a line but an impression and reference. None would want to read you unless he knows what it is about. Just like this post. If I would not have written that it is about writing a motivation-letter, you probably would not get annoyed. So start by writing what your letter is about. It could seem like this-</p><h5>Letter Of Application</h5><p>Your Address And Contact Details</p><p>Receiver&rsquo;s Address</p><p>Dear XYZ</p><p>I would like to apply for the&hellip;..</p><p>or</p><p>I am writing here to apply for the&hellip;</p><p>or</p><p>This is regarding your advert. published&hellip;.</p><p>Then Tell Background like-<br />As my resume reveals, I have Bachelor`s degree from XYZ University and currently, I am&hellip;..</p><p>Be sure to signify your institution/University like-<br />I am privileged to obtain my postgraduate education in Bioinformatics at XXX which is known for its enriching academic ambiance where learning and research complement each other.</p><p>Then tell about your professional experience like-<br />Being taught by eminent faculty, I have developed a big interest and passion towards Bioinformatics and managed to have a strong foundation in &hellip;&hellip;</p><p>After that tell how this position would help you, like-<br />The opportunity to participate in this study would foster&hellip;.</p><p>Assure them that you will make use of whatever you learn there, like-<br />I plan to ensure the further dissemination of the knowledge and experience gained by this opportunity in&hellip;</p><p>Close the letter with usual formality, like-<br />I, hereby enclose a copy of my CV/Resume (whatever it is, there is a difference we all know it) with the hope of consideration. Looking forward to hearing from you.</p><p><br />All the things written above is just my view. You still should see and learn which can be done by one thing and that is -reading about it. Then , please try to write yourself, do not copy /paste. Whatever is written in the post is just to have an idea about the things that should be included in the letter of motivation. You need to write accordingly with a wise choice of words.<br />Hope this was helpful. You may comment or ask anything if you want to.</p>]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/33372/fellowship-opportunities-for-indian-researchers</guid>
	<pubDate>Thu, 01 Jun 2017 05:42:05 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/33372/fellowship-opportunities-for-indian-researchers</link>
	<title><![CDATA[Fellowship Opportunities for Indian Researchers]]></title>
	<description><![CDATA[<p>Fellowships are structured to provide significant work experiences, and fellows are often expected to take on a great deal of responsibility quickly. Generally, fellows are provided with unique experiences that are not typically available to someone starting out in an entry-level position. This experiential learning component varies depending upon the fellowship program<strong>.</strong></p><p><strong>Ramalingaswamy Re-entry Fellowship</strong><br />Welcoming Indian scientists working abroad back to our institutions..</p><p><strong>TATA Innovation Fellowships</strong><br />Promotes innovations towards path-breaking solutions for major challenges..</p><p><strong>TWAS fellowships</strong><br />For doctorate &amp; post-doctorate students from developing countries at Indian institutions..</p><p><strong>Cutting-Edge Research Enhancement and Scientific Training (CREST) Award</strong><br />Granted to biotech researchers for advanced scientific training abroad..</p><p><strong>Wellcome Trust/DBT India Alliance</strong><br />Building excellence among Indian bio-medical scientists by supporting future leaders..</p><p>More at http://www.dbtindia.nic.in/funding-mechanism/fellowships-for-scientists/</p>]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/21096/how-to-prepare-your-bioinformatics-cv</guid>
	<pubDate>Mon, 09 Feb 2015 01:50:01 -0600</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/21096/how-to-prepare-your-bioinformatics-cv</link>
	<title><![CDATA[How to Prepare your Bioinformatics CV ?]]></title>
	<description><![CDATA[<p>Preparing a CV is also an art as well as a requirement for a person applying for a job .<br /> Curriculum Vitae is the first impression on the employer so it should be the best.How It can be the best can be learnt.Here is a link where you can get guidelines on how CV can be prepared and a sample also. Preparing your own Curriculum Vitae can seem a daunting task, quite apart from what to put in and what to leave out, describing your own strengths and abilities isn't easy. What we have tried to do with the following guidelines is to make the whole process a much easier one and ensure that you end up with a professional document which shows you how to pitch your skills and stand out from the crowd. In the current economic and employment climate, employers are looking to consistently improve on productivity and match a prospective employee's skills and experience with the job needs, both now and in the future.<br /> <strong><br /> Presentation and layout</strong><br /> Always ensure that your CV is laser-printed on white, good quality paper, use a clean typeface and don't go smaller than 12 point.<br /> The use of sub-headings (e.g. Personal details, career history, etc.) will help potential employers glean the information they require with ease.<br /> There should be clear spaces between category headings for easy clarification and definition.<br /> Your name, address and phone number(s) should form the start of the document. If you are giving a work number add the following - 'please use with discretion.'<br /> Commencing with your present or most recent employer, state your career history. Then list your professional qualifications. If you have been working for many years list your academic qualifications and a very brief mention as to your college or schooling.<br /> If you are just commencing your working life, having previously been a student, provide more in depth knowledge regarding your academic achievements to date.<br /> <br /> <strong>Content</strong></p><p>Starting with your current or most recent employment provide details of your position as follows:</p><ul>
<li>A chronological CV should be arranged in reverse chronological order. It should be apparent immediately where you are now.</li>
<li>Remember that an application form is limited to the few things that a particular institution wants to know about everybody. A CV lets you give information that is unique to you. Add all your key accomplishments and activities in the initial draft. In subsequent drafts, you can remove information that may not be pertinent.</li>
<li>Resist the temptation to append explanatory sentences or language, which will distract the reader from the basic information being presented. The language of a CV is abbreviated and succinct. When applying for residency training, you will have the opportunity to express yourself in a personal or biographical statement. In the future, when applying for a job or some other type of position, you will want to include an appropriate cover letter with your CV to explain your particular qualifications and strengths for the position.</li>
<li>Don&rsquo;t despair if your CV doesn&rsquo;t resemble those of other students who are applying to the same residency program. Everybody&rsquo;s CV is different. Even if everyone used the same format suggested in this section, your CV will not resemble others&rsquo; because it doesn&rsquo;t have the same content. No residency program director is looking for a specific CV style. You will receive points for neatness, and readability.</li>
<li>Be honest. If you haven&rsquo;t accomplished anything in a particular category, leave it out. Don&rsquo;t create accomplishments to fill in the spaces. You can be specific about your level of participation in a project or activity, but don&rsquo;t be misleading (i.e., you can say you coordinated membership recruitment for your AMSA chapter, but don&rsquo;t say you were &ldquo;president&rdquo; unless you were).</li>
</ul><ul>
<li>Job title - time that you have held this position</li>
<li>The key tasks and responsibilities that comprise this role's requirements - notable achievements whilst in the role</li>
<li>Where possible quantify your achievements with precise facts and figures, e.g. managed junior staff, handled department budget, prepared management reports</li>
<li>Expand on the skills you are using in your current job which you believe will be valuable in the position(s) for which you are applying</li>
</ul><p>It is not necessary to state the reason you are leaving your current position. This will be a topic for conversation when you are invited for interview or can be covered in your letter of application.<br /> For all previous employment, unless one appointment was more significant than your current or last position, keep details brief i.e. the name of the company, job title, period of employment and the job.<br /> Be sure there are no gaps in your career history - unless for example you took a year out to travel, in which case make reference to this under Interests/Hobbies.<br /> If you are a student just starting work, give any evidence you can to demonstrate your practical skills e.g. school prefect, event organisation, member of sports team, contributor to college magazine or voluntary work.<br /><br /> You are under no obligation to disclose marital status, age or whether or not you have children unless these are specific criteria for selection for a position that you are interested in.<br /> Consider what examples (interests/ hobbies) you can give to show that you match the selection criteria.<br /><br /> If they want someone to work as part of a large team, remember to say if you belong to a local organisation or if you are part of a sports team.<br /><br /> If they want someone who will work on their own for large periods of time, make reference to an Open University course you are considering undertaking.<br /><br /> Your primary objective is to convince the prospective employer that you have the requisite skills, experience and hunger to do the job.<br /><br /> Your CV should be no more than two A4 pages and as every employer is different remember to customise your CV to every job you go after.</p><p>There are abundant books on the contents and presentation of a general CV. A BMJ article published in 1978, offering doctors guidance on how to prepare a CV, has been reprinted in the widely read How to do it series.1 2 A survey among postgraduate deans and training advisers at regional colleges found that the contents and presentation of a model CV for doctors in training has been published.3 It is perhaps surprising to note that these models differ significantly from one another. Although they may be useful as starting points, their differences tend to create confusion and anxiety among students. I would argue that these differences exist because the content and presentation of the "ideal" CV vary considerably among individual applicants, the stage of their careers, and the purposes for which the CV is used. It is impossible to create a generic CV. I have therefore not attempted to draw up another model CV. Rather, the purpose of this article is to outline the general principles and important practical points in preparing a good CV. General principles on contents Before finalising your CV for a particular purpose you must be sure of your objectives, whether it is used as an initial screening or the only selection instrument, and the criteria against which it is judged. What details, and how many of them, to include in your CV depends on these factors. I shall illustrate with examples relevant to medical students.&nbsp;<br /> <br /> (1) Job application Your objective is to get the job. In a job application, the CV is used for two purposes: as an initial screening instrument for shortlisting candidates and as a framework for discussion during the interview. The explicit criteria used for shortlisting are usually given in the job advertisement. For some organisations, separate lists of essential and desirable criteria are given. Alternatively, you can get a good idea of the basic requirements from the job description. Your CV must clearly highlight these criteria, preferably on the first page. These usually include: formal qualifications; registration with the General Medical Council; and the prescribed experience. It is sometimes easy to forget to mention items specifically asked for in the job description (for example, a valid driving licence). The implicit criteria are less easy to pinpoint. For example, how much detail on your BSc dissertation and publications should you include? Should you make a long list of extracurricular activities, interests outside medicine, and positions of responsibility? If you admit to a wide range of extracurricular activities and interests, would you be considered as a candidate with a well balanced mature personality or will it be interpreted to mean that you will have little time or interest to do your job? There are no easy answers. Common sense might tell you that BSc dissertation and publications are more important in application for teaching hospital or research posts, but less important for district hospital posts. Conversely, you might think that interests outside medicine are more important for posts in district hospitals or in general practice. This is, however, not always true. A few consultants at district hospital are highly academic. Information gathered from students and doctors working under the professor or consultant concerned may be vital. Alternatively, it is worth while doing your homework by looking up your prospective consultant in the medical directory. This may occasionally prompt you to include information that you might otherwise have left out. For example, you may find that the consultant qualified in Scotland and has previously worked in Scotland for a considerable time, and you may decide to add in your CV that you studied in a Scottish secondary school. Since the CV is only used as for initial screening, you need not go into your previous experience or extracurricular activities in too much detail. Highlight only the most significant points, and leave the details for the interview. If you are applying for a clinical post, one of your referees should be a consultant for whom you have worked as a student. You should ask for permission to use his/her name before submitting your application.&nbsp;<br /> <br /> (2) Application for research scholarship or PhD studentship The CV and application form are sometimes used as the sole selection instrument, and you must make enquiries before you submit your application. Clearly, academic ability is the main criterion for selection, and you should include as much information relevant to your academic ability and interests as you can. Examples are your A levels, your BSc dissertation, any publications (even in the form of a letter in newspaper), any experience as an editor (for example, for your school magazine). Your extracurricular activities are less important, and you can simply give a short list. At least one of the referees should be an academic - for example, your previous supervisor in your BSc degree.<br /> &nbsp;<br /> (3) Application to join a clinical course in another medical school Preclinical students who have completed an intercalated degree often have the option of applying to join a clinical course in another medical school, although it may become more difficult to do so with the introduction of the new GMC curriculum. Your CV is usually used for shortlisting candidates for interview. The criteria differ slightly among medical schools, but both academic ability and contribution to university life are important. Hence, not only should you highlight your academic achievements but you must also highlight your participation in the university (for example, in sports or music).&nbsp;<br /> <br /> (4) For the information of your tutor or counsellor For most medical schools, you are allocated a tutor who provides both academic and non-academic support and monitors your progress throughout your study on a confidential basis. Students are sometimes asked to submit their up to date CV to their tutors for information. Assuming that the tutors are helpful there is little to gain from over emphasising your strengths or hiding your weaknesses. Once you become a doctor in training after you qualify you will need to undergo an annual assessment of your progress. It serves to certify that you have reached a satisfactory standard, but it is also used as an aid to identify and help with your weaknesses. You may find it difficult to balance these two purposes in presenting your CV. General principles on presentation Now that all students are computer literate, there should be few problems in preparing a well presented CV. The following list serves as a reminder on how to present your CV effectively: Spelling or grammar mistakes - do not rely purely on the spell check on your computer. Ask friends to proofread your CV for you. Consistency - The use of punctuation to open and close sentences, justification, and fonts should be consistent. Readability - The headings should be clear. The font size should be no less than 12 point. Basic criteria - The basic criteria should be easily located, preferably on the first page. Length - The length of your CV increases as you progress up the professional ladder. For students, it should generally be no more than three pages. Quality of print - The CV should be printed on good quality paper, preferably using a laser printer. Practical points In this article, I argue that different versions of a CV may be required for different purposes. Even applications for different posts in the same specialty may require slightly different versions. Also, CVs need to be updated regularly. This would have been time consuming to achieve in the past, but it is now quite simple, with the aid of a basic word processing package. A master CV containing all relevant information should be prepared and saved as a computer file. This should be continuously kept up to date. When the need for a CV arises, it can be tailormade by editing the master document. It is important to save each of these edited versions separately, with the file names indicating the date when it was created and the purpose. It is also important to prepare a cover letter to go with the CV. Key messages A good CV is essential for successful progression up the medical professional ladder The contents of the CV should be tailormade for the purpose it is used for and the criteria against which it is judged. It is important to gather information about these criteria first The CV must be technically well presented, with the basic criteria easily located Information technology has made it simple to regularly update our CVs and allows preparation of different versions of a CV for different purposes with relative ease.</p><p><strong>Reference:</strong></p><p>Prepare a curriculum vitae. BMJ 1978;25(2):1478-9.<br /> O'Brien E. Prepare a curriculum vitae. In: Reece D, ed.&nbsp;<br /> How to do it. Vol 1. London: BMJ Publishing Group, 1995 Chambler AF, Chapman-Sheath PJ, Pearse MF.&nbsp;<br /> A model curriculum vitae: what are the trainers looking for? Hosp Med 1998;59(4):324-6.</p>]]></description>
	<dc:creator>Neel</dc:creator>
</item>

</channel>
</rss>