<?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: Related items]]></title>
	<link>https://bioinformaticsonline.com/related/33955?offset=110</link>
	<atom:link href="https://bioinformaticsonline.com/related/33955?offset=110" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/43268/kmer-a-suite-of-tools-for-dna-sequence-analysis</guid>
	<pubDate>Wed, 18 Aug 2021 00:02:54 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/43268/kmer-a-suite-of-tools-for-dna-sequence-analysis</link>
	<title><![CDATA[Kmer: a suite of tools for DNA sequence analysis]]></title>
	<description><![CDATA[<p>More at&nbsp;https://help.rc.ufl.edu/doc/Kmer</p>
<p>This also includes:</p>
<ul>
<li>A2Amapper: ATAC, Assembly to Assembly Comparision tool:
<ul>
<li>Comparative mapping between two genome assemblies (same species), or between two different genomes (cross species).</li>
</ul>
</li>
</ul>
<ul>
<li>Sim4db:
<ul>
<li>Spliced alignment of cDNA and genomic sequences, from the same (sim4) or related (sim4cc) species. Optimized for high-throughput batched alignment.</li>
</ul>
</li>
</ul>
<ul>
<li>LEAFF:
<ul>
<li>LEAFF (ahem, Let's Extract Anything From Fasta) is a utility program for working with multi-fasta files. In addition to providing random access to the base level, it includes several analysis functions.</li>
</ul>
</li>
</ul>
<ul>
<li>Meryl:
<ul>
<li>An out-of-core k-mer counter. The amount of sequence that can be processed for any size k depends only on the amount of free disk space.</li>
</ul>
</li>
</ul><p>Address of the bookmark: <a href="https://help.rc.ufl.edu/doc/Kmer" rel="nofollow">https://help.rc.ufl.edu/doc/Kmer</a></p>]]></description>
	<dc:creator>BioStar</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/44904/termal-a-fast-and-interactive-terminal-based-viewer-for-multiple-sequence-alignments</guid>
	<pubDate>Mon, 22 Sep 2025 23:51:02 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/44904/termal-a-fast-and-interactive-terminal-based-viewer-for-multiple-sequence-alignments</link>
	<title><![CDATA[Termal: a fast and interactive terminal-based viewer for multiple sequence alignments]]></title>
	<description><![CDATA[<p>termal, a fast, interactive, terminal-based viewer for multiple sequence alignments (MSAs), designed for use on remote systems such as high-performance computing (HPC) clusters.</p>
<p>https://academic.oup.com/bioinformaticsadvances/advance-article/doi/10.1093/bioadv/vbaf208/8257678?login=true</p><p>Address of the bookmark: <a href="https://github.com/sib-swiss/termal" rel="nofollow">https://github.com/sib-swiss/termal</a></p>]]></description>
	<dc:creator>LEGE</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/researchlabs/view/5210/sandelin-group</guid>
  <pubDate>Mon, 30 Sep 2013 19:12:58 -0500</pubDate>
  <link></link>
  <title><![CDATA[Sandelin group]]></title>
  <description><![CDATA[
<p>Sandelin group have a deep interest in most biology, but focus on gene regulation and the many areas that are connected with this, including transcriptomics, epigenetics and technological and informatics aspects.</p>

<p>The group is both computational and experimental.</p>

<p>We ask biological questions to large datasets made using novel genomics techniques, with the help of computers. One of the strengths in the group are the many connections to high-profile experimental laboratories which supply data to be analyzed.</p>

<p>Lab webpage @ http://people.binf.ku.dk/albin/Sandelin_group_at_the_Bioinformatic_Centre/The_Sandelin_group.html</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/researchlabs/view/8385/peng-lab</guid>
  <pubDate>Tue, 18 Feb 2014 13:53:46 -0600</pubDate>
  <link></link>
  <title><![CDATA[Peng Lab]]></title>
  <description><![CDATA[
<p>Peng Lab at Janelia Farm Research Campus, Howard Hughes Medical Institute focuses on data mining for bioinformatics and computational molecular biology, particularly, bioimage data mining and informatics. These bioimages include cellular and molecular images and related medical images. </p>

<p>* Analysis of Gene Expression Pattern Images: high-performance image analysis and mining for different model organisms, such as fruitfly, C. elegans, and mouse;<br />* Feature/Model Learning: developing algorithms and software</p>

<p>Location :Janelia Farm Research Campus, Howard Hughes Medical Institute, Ashburn, Virginia, USA.</p>

<p>http://research.janelia.org/peng/</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/30654/source-code-and-pseudo-code</guid>
	<pubDate>Mon, 23 Jan 2017 10:17:35 -0600</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/30654/source-code-and-pseudo-code</link>
	<title><![CDATA[Source Code and Pseudo Code !!]]></title>
	<description><![CDATA[<p>An <span style="text-decoration: underline;">algorithm</span> is a procedure for solving a problem in terms of the actions to be executed and the order in which those actions are to be executed. An algorithm is merely the sequence of steps taken to solve a problem. The steps are normally "sequence," "selection, " "iteration," and a case-type statement.</p><p>In C, "sequence statements" are imperatives. The "selection" is the "if then else" statement, and the iteration is satisfied by a number of statements, such as the "while," " do," and the "for," while the case-type statement is satisfied by the "switch" statement.</p><hr><p><span style="text-decoration: underline;">Pseudocode</span> is an artificial and informal language that helps programmers develop algorithms. Pseudocode is a "text-based" detail (algorithmic) design tool.</p><p>The rules of Pseudocode are reasonably straightforward. All statements showing "dependency" are to be indented. These include while, do, for, if, switch. Examples below will illustrate this notion.</p><p><strong> GUIDE TO PSEUDOCODE LEVEL OF DETAIL: Given record/file descriptions, pseudocode should be created in sufficient detail so as to directly support the programming effort. It is the purpose of pseudocode to elaborate on the algorithmic detail and not just cite an abstraction. </strong></p><hr><p>Examples:</p><p>1.</p><pre>If student's grade is greater than or equal to 60
    Print "passed"
else
    Print "failed"  
endif
</pre><hr><p>2.</p><pre>  
Set total to zero
Set grade counter to one
While grade counter is less than or equal to ten
    Input the next grade
    Add the grade into the total
endwhile 
Set the class average to the total divided by ten
Print the class average.
</pre><hr><p>3.</p><pre>Initialize total to zero
Initialize counter to zero
Input the first grade
while the user has not as yet entered the sentinel
   add this grade into the running total 
   add one to the grade counter  
   input the next grade (possibly the sentinel)
endwhile

if the counter is not equal to zero
   set the average to the total divided by the counter
   print the average  
else
   print 'no grades were entered' 
endif 
</pre><hr><p>4.</p><pre>initialize passes to zero
initialize failures to zero
initialize student to one
while student counter is less than or equal to ten
    input the next exam result  
    if the student passed</pre><p>add one to passes else add one to failures add one to student counter endif endwhile print the number of passes print the number of failures if eight or more students passed print "raise tuition" endif</p><hr><h3><strong>5.</strong></h3><pre>Larger example:  

NOTE:  NEVER ANY DATA DECLARATIONS IN PSEUDOCODE

Print out appropriate heading and make it pretty
While not EOF do:
     Scan over blanks and white space until a char is found 
	(get first character on the line)
     set can't-be-ascending-flag to 0
     set consec cntr to 1
     set ascending cntr to 1
     putchar first char of string to screen
     set read character to hold character
     While next character read != blanks and white space
          putchar out on screen
          if new char = hold char + 1
               add 1 to consec cntr
               set hold char = new char
               continue
          endif
          if new char &gt;= hold char 
               if consec cntr &lt; 3 
                    set consec cntr to 1
               endif
               set hold char = new char
               continue
          endif
          if new char &lt; hold char
               if consec cntr &lt; 3
                    set consec cntr to 1
               endif
               set hold char = new char
               set can't be ascending flag to 1
               continue
           endif
     end while
     if consec cntr &gt;= 3 
          printf (Appropriate message 1 and skip a line)
          add 1 to consec total
     endif
     if  can't be ascending flag = 0
          printf (Appropriate message 2 and skip a line)
          add 1 to ascending total
     else
          printf (Sorry message and skip a line)
          add 1 to sorry total
     endif
end While
Print out totals:  Number of consecs, ascendings, and sorries.
Stop
</pre><p>Some Keywords That Should be Used And Additional Points</p><p>For looping and selection, The keywords that are to be used include Do While...EndDo; Do Until...Enddo; While .... Endwhile is acceptable. Also, Loop .... endloop is also VERY good and is language independent. Case...EndCase; If...Endif; Call ... with (parameters); Call; Return ....; Return; When;</p><p>Always use scope terminators for loops and iteration.</p><p>As verbs, use the words Generate, Compute, Process, etc. Words such as set, reset, increment, compute, calculate, add, sum, multiply, ... print, display, input, output, edit, test , etc. with careful indentation tend to foster desirable pseudocode. Also, using words such as Set and Initialize, when assigning values to variables is also desirable.</p><p>More on Formatting and Conventions in Pseudocoding</p><ul>
<li>INDENTATION in pseudocode should be identical to its implementation in a programming language. Try to indent at least four spaces.</li>
<li>As noted above, the pseudocode entries are to be cryptic, AND SHOULD NOT BE PROSE. NO SENTENCES.</li>
<li>No flower boxes (discussed ahead) in your pseudocode.</li>
<li>Do not include data declarations in your pseudocode.</li>
<li>But do cite variables that are initialized as part of their declarations. E.g. "initialize count to zero" is a good entry.<hr>Function Calls, Function Documentation, and Pseudocode</li>
<li>Calls to Functions should appear as:
<ul>     </ul>
</li>
<li>Returns in functions should appear as:
<ul> </ul>
</li>
<li>Function headers should appear as:
<ul>     </ul>
</li>
<li>Note that in C, arguments and parameters such as "fieldn" could be written: "pointer to fieldn ...."</li>
<li>Functions called with addresses should be written as:
<ul>         </ul>
</li>
<li>Function headers containing pointers should be indicated as:
<ul>        </ul>
</li>
<li>Returns in functions where a pointer is returned:
<ul>   </ul>
</li>
<li>It would not hurt the appearance of your pseudocode to draw a line or make your function header line "bold" in your pseudocode. Try to set off your functions.</li>
<li>Try to use scope terminators in your pseudocode and source code too. It really hels the readability of the text.<hr>Source Code</li>
<li>EVERY function should have a flowerbox PRECEDING IT. This flower box is to include the functions name, the main purpose of the function, parameters it is expecting (number and type), and the type of the data it returns. All of these listed items are to be on separate lines with spaces in between each explanatory item.</li>
<li>FORMAT of flowerbox should be
<p>&nbsp;</p>
<pre>	 ********************************************************
	 Function:   ( cryptic text describing single function
		     ....... (indented like this) 	
		     .......
	 Calls:      Start listing functions "this" function calls
		     Show these functions:  one per line, indented

	 Called by:  List of functions that calls "this" function
		     Show these functions:  one per line, indented.

	 Input Parameters:  list, if appropriate; else None
	 
	 Returns:    List, if appropriate.
	 ****************************************************************
</pre>
</li>
<li>INDENTATION is critically important in Source Code. Follow standard examples given in class. If in doubt, ASK. Always indent statements within IFs, FOR loops, WILLE loops, SWITCH statements, etc. a consistent number of spaces, such as four. Alternatively, use the tab key. One or two spaces is insufficient.</li>
<li>Use scope terminators at the end of if statements, for statements, while statements, and at the end of functions. It will make your program much more readable.
<p><strong> SPELLING ERRORS ARE NOT ACCEPTABLE </strong></p>
</li>
</ul>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/2261/best-book-titles-for-learning-bionformatics</guid>
	<pubDate>Tue, 13 Aug 2013 17:31:51 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/2261/best-book-titles-for-learning-bionformatics</link>
	<title><![CDATA[Best book Titles for Learning Bionformatics]]></title>
	<description><![CDATA[<p>Nothing can add to our intellect more than reading a book. &nbsp;In books, we can experience new things that we would not normally be able to experience. It is proved that books can change our lives and other people&rsquo;s lives. Reading can make us more intelligent, updated, imaginative. Without reading we wouldn&rsquo;t know anything that we know today. There are several book, online and offile to read and I can't mentioned all of them here in the list. Therefore, I mentioned some bioinformatics and its related books in subgroups. Hope you will like the list.&nbsp;</p><p>Sequence Analysis and General Bioinformatics</p><ul>
<li>BLAST, Ian Korf, Mark Yandell, Joseph Bedell, 2003, O'Reilly</li>
<li>Sequence Analysis in a Nutshell: A Guide to Common Tools and Databases, Scott Markel, Darryl Leon, 2003, O'Reilly</li>
<li>Bioinformatics for Geneticists, Michael Barnes, Ian C Gray (Editors), 2003, John Wiley &amp; Sons</li>
<li>Bioinformatics for Dummies, Jean-Michel Claverie, Cedric Notredame, 2003, John Wiley &amp; Sons</li>
<li>Mathematics of Genome Analysis, Jerome K. Percus, 2002, Cambridge Univ Press</li>
<li>Bioinformatics Computing, Bryan P. Bergeron, 2002, Prentice Hall</li>
<li>Evolutionary Computation in Bioinformatics, Gary B. Fogel, David W. Corne (Editors), 2002, Morgan Kaufmann</li>
<li>Introduction to Bioinformatics, Arthur M. Lesk, 2002, Oxford University Press</li>
<li>Instant Notes in Bioinformatics, D.R. Westhead, J. H. Parish, R.M. Twyman, 2002, Bios Scientific Pub</li>
<li>Fundamental Concepts of Bioinformatics, Dan E. Krane, Michael L. Raymer, Michaeel L. Raymer, Elaine Nicpon Marieb, 2002, Benjamin/Cummings</li>
<li>Essentials of Genomics and Bioinformatics, C. W. Sensen (Editor), 2002, John Wiley &amp; Sons</li>
<li>Current Topics in Computational Molecular Biology (Computational Molecular Biology), Tao Jiang, Ying Xu, Michael Zhang (Editors), 2002, MIT Press</li>
<li>Hidden Markov Models for Bioinformatics, Timo Koski, Timo Koskinen, 2001, Kluwer Academic Publishers</li>
<li>Bioinformatics: From Genomes to Drugs, Thomas Lengauer (Editor), 2001, John Wiley &amp; Sons</li>
<li>Statistical Methods in Bioinformatics: An Introduction (Statistics for Biology and Health), Warren Ewens, Gregory Grant, 2001, Springer Verlag</li>
<li>Bioinformatics: A Practical Guide to the Analysis of Genes and Proteins, Second Edition, Andreas D. Baxevanis, B. F. Francis Ouellette, 2001, Wiley-Interscience</li>
<li>Bioinformatics: The Machine Learning Approach, Second Edition (Adaptive Computation and Machine Learning), Pierre Baldi, Soren Brunak, Sren Brunak, 2001, MIT Press</li>
<li>Introduction to Bioinformatics, T eresa Attwood, David Parry-Smith, 2001, Prentice Hall</li>
<li>Bioinformatics: A Primer, Charles Staben, 2001, Jones &amp; Bartlett Pub</li>
<li>Data Analysis and Classification for Bioinformatics, Arun Jagota, 2000, AKJ Academics</li>
<li>Bioinformatics: Sequence and Genome Analysis, David W. Mount, 2001, Cold Spring Harbor Laboratory Press</li>
<li>Bioinformatics: A Biologist's Guide to Biocomputing and the Internet, Stuart M. Brown, 2000, Eaton Pub Co</li>
<li>Bioinformatics: Sequence, Structure and Databanks: A Practical Approach (The Practical Approach Series, 236), Des Higgins (Editor), Willie Taylor (Editor), 2000, Oxford Univ Press</li>
<li>Neural Networks and Genome Informatics, Cathy H. Wu, Jerry W. McLarty, 2000, Elsevier Science</li>
<li>Computational Molecular Biology: An Introduction (Wiley Series in Mathematical and Computational Biology), Peter Clote and Rolf Backofen, 2000, John Wiley &amp; Sons</li>
<li>Computational Molecular Biology: An Algorithmic Approach, Pavel A. Pevzner, 2000, MIT Press</li>
<li>Post-Genome Informatics, Minoru Kanehisa, 2000, Oxford Univ Press</li>
<li>Mathematical and Computational Biology: Computational Morphogenesis, Hierarchical Complexity, and Digital Evolution, Chrystopher L. Nehaniv, 1999, American Mathematical Society</li>
<li>Pattern Discovery in Biomolecular Data: Tools, Techniques, and Applications, Jason T. L. Wang, Bruce A. Shapiro, Dennis Elliott Shasha (Editors), 1999, Oxford Univ Press</li>
<li>Time Warps, String Edits, and Macromolecules: The Theory and Practice of Sequence Comparison, David Sankoff and Joseph Kruskal (Editors), 1999, Cambridge University Press</li>
<li>Bioinformatics Basics: Applications in Biological Science and Medicine, Hooman Rashidi, 1999, CRC Press</li>
<li>Bioinformatics: Methods and Protocols (Methods in Molecular Biology, Vol 132), Stephen Misener and Stephen A. Krawetz (Editors),1999, Humana Press</li>
<li>Bioinformatics: Databases and Systems, Stanley Letovsky (Editor),1999, Kluwer Academic Publishers</li>
<li>Computational Molecular Biology, P. Green, 1998, Blackwell Science Inc.</li>
<li>Computational Methods in Molecular Biology (New Comprehensive Biochemistry, V. 32), Steven L. Salzberg, David B. Searls, Simon Kasif (Editors), 1998, Elsevier Science Ltd.</li>
<li>Biological Sequence Analysis: Probabilistic Models of Proteins and Nucleic Acids, Richard Durbin, S. Eddy, A. Krogh, G. Mitchison, 1998, Cambridge University Press</li>
<li>Guide to Human Genome Computing, M. J. Bishop (Editor), 1998, Academic Press</li>
<li>Introduction to Computational Molecular Biology, Joao Meidanis, Joao C. Setabal, 1997, PWS Pub. Co.</li>
<li>Algorithms on Strings, Trees, and Sequences: Computer Science and Computational Biology, Dan Gusfield, 1997, Cambridge University Press</li>
<li>Sequence Data Analysis Guidebook, Simon R. Swindell (Editor), 1997, Humana Press</li>
<li>High Performance Computational Methods for Biological Sequence Analysis, Tieng K. Yap, Ophir Frieder, Robert L. Martino, 1996, Kluwer Academic Pub.</li>
<li>Computer Methods for Macromolecular Sequence Analysis, Methods in Enzymology, volume 266, Russell F. Doolittle (Editor), 1996, Academic Press</li>
<li>DNA and Protein Sequence Analysis: A Practical Approach (Practical Approach Series , No 171), 1996, M. J. Bishop and C. J. Rawlings (Editors), 1996, IRL Press</li>
<li>Molecular Bioinformatics: Algorithms and Applications, Steffen Schulze-Kremer, 1995, Walter De Gruyter</li>
<li>Introduction to Computational Biology - Maps, sequences and genomes, Michael S. Waterman, 1995, Chapman &amp; Hall</li>
<li>Computer Analysis of Sequence Data, Annette M. Griffin and Hugh G. Griffin (Editors), 1994, Humana Press</li>
<li>Artificial Intelligence and Molecular Biology, Lawrence Hunter (Editor), 1993, AAAI Press</li>
<li>Sequence Analysis Primer, Michael Gribskov and John Devereux (Editors), 1992, Oxford University Press</li>
<li>Mathematical Methods of Analysis of Biopolymer Sequences (Dimacs Series in Discrete Mathematics and Theoretical Computer Science ; Volume 8), S. G. Gindikin, 1992, American Mathematical Society</li>
<li>Mathematical Methods for DNA Sequences, Michael S. Waterman (Editor), 1989, CRC Press</li>
</ul><p>Programming Books for Bioinformatics</p><ul>
<li>Mastering Perl for Bioinformatics, James D. Tisdall, 2003, O'Reilly</li>
<li>Genomic Perl: From Bioinformatics Basics to Working Code, Rex A. Dwyer, 2002, Cambridge University Press</li>
<li>Beginning Perl for Bioinformatics, James Tisdall, 2001, O'Reilly</li>
<li>Developing Bioinformatics Computer Skills, Cynthia Gibas, Per Jambeck, 2001, O'Reilly</li>
</ul><p>General Genomics</p><ul>
<li>Functional Microbial Genomics (Volume 33), Brendan Wren, Nick Dorrell, 2003, Academic Press</li>
<li>Discovering Genomics, Proteomics, and Bioinformatics, A. Malcolm Campbell, Laurie J. Heyer, 2002, Benjamin/Cummings</li>
<li>Genomes, Terence A. Brown, 2002, John Wiley &amp; Sons</li>
<li>Essentials of Medical Genomics, Stuart M. Brown , 2002, John Wiley &amp; Sons</li>
<li>A Primer of Genome Science, Greg Gibson, Spencer V. Muse, 2002, Sinauer Associates</li>
<li>Pathogen Genomics: Impact on Human Health, Karen Joy, Phd Shaw (Editors), 2002, Humana Press</li>
<li>Genomics, John E. Antonopoulos, 2000, Xlibris Corporation</li>
<li>Genomics and Proteomics: Functional and Computational Aspects, Sandor Suhai (Editor), 2000, Plenum Pub Corp</li>
<li>Functional Genomics: A Practical Approach (The Practical Approach Series, 235), S. Hunt and F. Livesey (Editors), 2000, Oxford Univ Press</li>
<li>Human Molecular Genetics, Andrew P. Read, Tom Strachan 1999, BIOS Scientific Publishers Ltd.</li>
<li>Genomics: The Science and Technology Behind the Human Genome Project, Charles R. Cantor and Cassandra L. Smith, 1999, John Wiley &amp; Sons</li>
<li>Cells: A Laboratory Manual, 3 volumes, David L. Spector, Robert D. Goldman, Leslie A. Leinwand, 1998, Cold Spring Harbor Laboratory Press</li>
<li>Genome Analysis: A Laboratory Manual, 4 volumes, Bruce Birren, et al. (Editors), 1997, Cold Spring Harbor Laboratory Press</li>
<li>The Human Genome Project, N. G. Cooper (Editor), 1994, University Science Books</li>
</ul><p>Comparative Genomics</p><ul>
<li>Handbook of Comparative Genomics: Principles and Methodology, Cecilia Saccone, Graziano Pesole, 2003, Wiley-Liss</li>
<li>Sequence - Evolution - Function: Computational Approaches in Comparative Genomics, Eugene V. Koonin, Michael Y. Galperin, 2002, Kluwer Academic Publishers</li>
<li>Comparative Genomics - Empirical and Analytical Approaches to Gene Order Dynamics, Map Alignment and the Evolution of Gene Families, David Sankoff and Joseph H. Nadeau, 2000, Kluwer Academic Pub</li>
<li>Comparative Genomics, Melody Clark (Editor), 2000, Kluwer Academic Pub</li>
</ul><p>Proteomics</p><ul>
<li>Proteins and Proteomics: A Laboratory Manual, Richard J. Simpson (Editor), Cold Spring Harbor Laboratory</li>
<li>Proteomics in Practice: A Laboratory Manual of Proteome Analysis , Reiner Westermeier, Tom Naven, 2002, John Wiley &amp; Sons</li>
<li>Posttranslational Modifications of Proteins: Tools for Functional Proteomics (Methods in Molecular Biology, Vol 194) , Christoph Kannicht (Editor), 2002, Humana Press</li>
<li>Peptide Arrays on Membrane Supports: Synthesis and Applications (Springer Lab Manual), Joachim Koch, Michael Mahler (Editors), 2002, Springer Verlag</li>
<li>Proteomics , Timothy Palzkill, 2002, Kluwer Academic Publishers</li>
<li>Introduction to Proteomics: Tools for the New Biology , Daniel C. Liebler (Editor), 2001, Humana Press</li>
<li>Proteome Research: Mass Spectrometry (Principles and Practice) , P. James (Editor), 2001, Springer Verlag</li>
<li>Interpreting Protein Mass Spectra: A Comprehensive Resource , A. Peter Snyder, 2000, American Chemical Society</li>
<li>Protein Sequencing and Identification Using Tandem Mass Spectrometry , Michael Kinter, Nicholas E. Sherman, 2000, Wiley-Interscience</li>
<li>From Genome to Proteome: Advances in the Practice and Application of Proteomics, Michael J. Dunn (Editor), 2000, Vch Verlagsgesellschaft Mbh</li>
<li>Proteomics: From Protein Sequence to Function, S. Pennington (Editor), M. Dunn (Editor), 2000, Springer Verlag</li>
<li>Proteome Research: Two-Dimensional Gel Electrophoresis and Detection Methods (Principles and Practice), T. Rabilloud (Editor), 2000, Springer Verlag</li>
<li>Proteome and Protein Analysis, R. M. Kamp, D. Kyriakidis, th Choli-Papadopoulou (Editor), 1999, Springer Verlag</li>
<li>Proteome Research: New Frontiers in Functional Genomics, M. R. Wilkins, et al. (Editors), 1997, Springer Verlag</li>
</ul><p>Protein Structure</p><ul>
<li>Structural Bioinformatics, Philip E. Bourne, Helge Weissig (Editors), 2003, John Wiley &amp; Sons</li>
<li>Protein Structure Prediction: Bioinfomatic Approach, I.F. Tsigelny, 2002, International University Line</li>
<li>Introduction to Protein Architecture: The Structural Biology of Proteins, Arthur M. Lesk, 2001, Oxford University Press</li>
<li>Protein Structure Prediction: Methods and Protocols, David M. Webster (Editor), 2000, Humana Press</li>
<li>Introduction to Protein Structure, Carl-Ivar Branden, John Tooze, 1999, Garland Publishing</li>
<li>Structure and Mechanism in Protein Science: A Guide to Enzyme Catalysis and Protein Folding, Alan Fersht, 1999, Freeman</li>
</ul><p>Pharmacogenomics</p><ul>
<li>Pharmacogenomics: Social, Ethical, and Clinical Dimensions, Mark A. Rothstein (Editor), 2003, Wiley-Liss</li>
<li>Pharmacogenomics: The Search for Individualized Therapies, Julio Licinio, Ma-Li Wong (Editors), 2002, John Wiley &amp; Sons</li>
<li>Pharmacogenomics, Werner Kalow, Urs A. Meyer, Rachel Tyndale (Editors), 2001, Marcel Dekker</li>
<li>Pharmacogenetics and Pharmcogenomics: Recent Conceptual and Technical Advances (Pharmacology, Volume 61, Number 3, 2000), Elliot S. Vesell (Editor), 2000, S. Karger Publishing</li>
<li>Pharmacogenetics, Wendell Weber, 1997, Oxford University Press</li>
</ul><p>DNA Microarrays</p><ul>
<li>Statistical Analysis of Gene Expression Microarray Data, T. P. Speed (Editor), 2003, CRC Press</li>
<li>Microarray Gene Expression Data Analysis: A Beginner's Guide, Helen C. Causton, John Quackenbush, Alvis Brazma, 2003, Blackwell Publishers</li>
<li>The Analysis of Gene Expression Data (Statistics for Biology and Health), G. Parmigiani, E. S. Garrett, R. A. Irizarry, S. Zeger , Graeme Clark (Editors), 2003, Springer Verlag</li>
<li>A Practical Approach to Microarray Data Analysis, Daniel P. Berrar, Werner Dubitzky, Martin Granzow (Editors), 2002, Kluwer Academic Publishers</li>
<li>DNA Microarrays and Gene Expression: From Experiments to Data Analysis and Modeling, Pierre Baldi, G. Wesley Hatfield, 2002, Cambridge University Press</li>
<li>DNA Microarrays: A Molecular Cloning Manual, David Bowtell, Joseph Sambrook (Editors), 2002, Cold Spring Harbor Laboratory</li>
<li>DNA Array Image Analysis: Nuts &amp; Bolts, Gerda Kamberova, Shishir Shah, 2002, DNA Press</li>
<li>Microarray Analysis, Mark Schena, 2002, John Wiley &amp; Sons</li>
<li>A Biologist's Guide to Analysis of DNA Microarray Data, Steen Knudsen, 2002, John Wiley &amp; Sons</li>
<li>Microarrays for an Integrative Genomics (Computational Molecular Biology), Isaac S. Kohane, Alvin Kho, Atul J. Butte, 2002, MIT Press</li>
<li>Microarrays for the Neurosciences: An Essential Guide (Cellular and Molecular Neuroscience), Daniel H. Geschwind, Jeffrey P. Gregg (Editors), 2002, MIT Press</li>
<li>DNA Microarrays: Gene Expression Applications, Bertrand Jordan (Editor), 2001, Springer Verlag</li>
<li>DNA Arrays: Methods and Protocols (Methods in Molecular Biology, Volume 170), Jang B. Rampal (Editor), 2001, Humana Press</li>
<li>DNA Arrays: Technologies and Experimental Strategies, Elena V. Grigorenko (Editor), 2001, CRC Press</li>
<li>Microarray Biochip Technology, Mark Schena (Editor), 2000, Eaton Pub</li>
<li>Expression Genetics: Accelerated and High-Throughput Methods (Biotechniques Update Series), Michael McClelland (Editor), Arthur B. Pardee (Editor), 1999, Eaton Pub</li>
<li>DNA Microarrays: A Practical Approach (Practical Approach Series 205), Mark Schena (Editor), 1999, Oxford Univ Press</li>
<li>cDNA Preparation and Characterization (Methods in Enzymology Volume 303), S.M. Weissman (Editor), 1999, Academic Press</li>
</ul><p>Systems Biology, Genetic and Biochemical Network</p><ul>
<li>Handbook of Graphs and Networks : From the Genome to the Internet, Stefan Bornholdt, Heinz Georg Schuster (Editors), 2003, Vch Verlagsgesellschaft Mbh</li>
<li>Computational Cell Biology, Christopher Fall, Eric Marland, John Wagner, John Tyson (Editors), 2002, Springer Verlag</li>
<li>Gene Regulation and Metabolism: Post-Genomic Computational Approaches (Computational Molecular Biology), Julio Collado-Vides, Ralf Hofestadt (Editors), 2002, MIT Press</li>
<li>Foundations of Systems Biology, Hiroaki Kitano (Editor), 2001, MIT Press</li>
<li>Genomic Regulatory Systems: Development and Evolution, Eric H. Davidson , 2001, Academic Press</li>
<li>Genes &amp; Signals, Mark Ptashne, Alexander Gann, 2001, Cold Spring Harbor Laboratory</li>
<li>Computational Modeling of Genetic and Biochemical Networks (Computational Molecular Biology), James M. Bower and Hamid Bolouri (Editors), 2001, MIT Press</li>
<li>Protein-Protein Interactions: A Molecular Cloning Manual, Erica Golemis (Editor), 2001, Cold Spring Harbor Laboratory</li>
<li>Computational Analysis of Biochemical Systems: A Practical Guide for Biochemists and Molecular Biologists, Eberhard O. Voit, 2000, Cambridge University Press</li>
<li>Mathematical Physiology, James P. Keener, James Sneyd, 1998, Springer Verlag</li>
</ul><p>&nbsp;</p><p>DNA Sequencing</p><ul>
<li>DNA Sequencing: From Experimental Methods to Bioinformatics (Introduction to Biotechniques Series), Luke Alphey, 1997, Springer Verlag</li>
<li>Automated DNA sequencing and analysis, Adams M.D., Fields C., Venter J.C. (Editors), 1994, Academic Press</li>
</ul><p>&nbsp;</p><p>Apart from above mentioned books, you can also find some useful books links at following mentioned URLs:</p><p>&nbsp;</p><p><a href="http://www.amazon.com/Biological-Sequence-Analysis-Probabilistic-Proteins/dp/0521629713">http://www.amazon.com/Biological-Sequence-Analysis-Probabilistic-Proteins/dp/0521629713</a></p><p><a href="http://www.amazon.com/Bioinformatics-Genes-Proteins-Computers-Advanced/dp/1859960545">http://www.amazon.com/Bioinformatics-Genes-Proteins-Computers-Advanced/dp/1859960545</a></p><p><a href="http://www.amazon.com/Introduction-Bioinformatics-Algorithms-Computational-Molecular/dp/0262101068">http://www.amazon.com/Introduction-Bioinformatics-Algorithms-Computational-Molecular/dp/0262101068</a></p><p><a href="http://books.google.no/books?id=pxSM7R1sdeQC&amp;dq=Pierre+baldi+%2B+bioinformatics&amp;printsec=frontcover&amp;source=bn&amp;hl=en&amp;ei=IoGRS6uCIJT-NYLA8Z0N&amp;sa=X&amp;oi=book_result&amp;ct=result&amp;redir_esc=y#v=onepage&amp;q&amp;f=false">http://books.google.no/books?id=pxSM7R1sdeQC&amp;dq=Pierre+baldi+%2B+bioinformatics&amp;printsec=frontcover&amp;source=bn&amp;hl=en&amp;ei=IoGRS6uCIJT-NYLA8Z0N&amp;sa=X&amp;oi=book_result&amp;ct=result&amp;redir_esc=y#v=onepage&amp;q&amp;f=false</a></p><p><a href="http://www.amazon.com/Statistical-Methods-Bioinformatics-Introduction-Statistics/dp/0387400826">http://www.amazon.com/Statistical-Methods-Bioinformatics-Introduction-Statistics/dp/0387400826</a></p><p>&nbsp;</p><p>If you think your favourite books are not listed then please write it down in comment section for the benefits of other users.&nbsp;Feel free to add many more books in comment section.&nbsp;</p>]]></description>
	<dc:creator>Rahul Agarwal</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/35800/scikit-bio%E2%84%A2-is-an-open-source-bsd-licensed-python-package-providing-data-structures-algorithms-and-educational-resources-for-bioinformatics</guid>
	<pubDate>Fri, 02 Mar 2018 04:29:47 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/35800/scikit-bio%E2%84%A2-is-an-open-source-bsd-licensed-python-package-providing-data-structures-algorithms-and-educational-resources-for-bioinformatics</link>
	<title><![CDATA[scikit-bio™ is an open-source, BSD-licensed, python package providing data structures, algorithms, and educational resources for bioinformatics.]]></title>
	<description><![CDATA[<p><span>scikit-bio is currently in beta. We are very actively developing it, and&nbsp;</span><strong>backward-incompatible interface changes can and will arise</strong><span>. To avoid these types of changes being a surprise to our users, our public APIs are decorated to make it clear to users when an API can be relied upon (stable) and when it may be subject to change (experimental). See the&nbsp;</span><a href="https://github.com/biocore/scikit-bio/blob/master/doc/source/user/api_stability.rst">API stability docs</a><span>&nbsp;for more details, including what we mean by&nbsp;</span><em>stable</em><span>&nbsp;and&nbsp;</span><em>experimental</em><span>&nbsp;in this context.</span></p><p>Address of the bookmark: <a href="http://scikit-bio.org/" rel="nofollow">http://scikit-bio.org/</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/27094/smash-an-alignment-free-method-to-find-and-visualise-rearrangements-between-pairs-of-dna-sequences</guid>
	<pubDate>Tue, 26 Apr 2016 12:18:49 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/27094/smash-an-alignment-free-method-to-find-and-visualise-rearrangements-between-pairs-of-dna-sequences</link>
	<title><![CDATA[Smash: An alignment-free method to find and visualise rearrangements between pairs of DNA sequences]]></title>
	<description><![CDATA[<p><strong>Smash is a completely alignment-free method/tool to find and visualise genomic rearrangements</strong><span>. The detection is based on&nbsp;</span><strong>conditional exclusive compression</strong><span>, namely using a FCM (Markov model), of high context order (typically 20). For visualisation, Smash outputs a&nbsp;</span><strong>SVG image</strong><span>, with an&nbsp;</span><strong>ideogram</strong><span>output architecture, where the patterns are represented with several&nbsp;</span><strong>HSV values</strong><span>&nbsp;(only value varies). The method can perform both in small- and large-scale. Nevertheless is more directed to large-scale since that the main aim of the research is to&nbsp;</span><strong>know where the large-scale [chromosomal by chromosome] of several primates was equal/different, having at a glance a map of the entire genomes</strong><span>.</span></p><p>Address of the bookmark: <a href="http://bioinformatics.ua.pt/software/smash/" rel="nofollow">http://bioinformatics.ua.pt/software/smash/</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/29992/spines</guid>
	<pubDate>Mon, 28 Nov 2016 05:33:26 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/29992/spines</link>
	<title><![CDATA[Spines]]></title>
	<description><![CDATA[<p><a href="https://www.broadinstitute.org/ftp/distribution/software/spines/"><em>Spines</em></a>&nbsp;is a collection of software tools, developed and used by the Vertebrate Genome Biology Group at the Broad Institute. It provides basic data structures for efficient data manipulation (mostly genomic sequences, alignments, variation etc.), as well as specialized tool sets for various analyses. It also features three sequence alignment packages:&nbsp;<em>Satsuma,</em>&nbsp;a highly parallelized program for high-sensitivity, genome-wide synteny;&nbsp;<em>Papaya,</em>&nbsp;an all-purpose alignment tool for less diverged sequences; and&nbsp;<em>SLAP,</em>&nbsp;a context-sensitive local aligner for diverged sequences with large gaps.</p>
<p>Access&nbsp;<em>Spines</em>&nbsp;<a href="https://www.broadinstitute.org/ftp/distribution/software/spines/">here</a>.</p><p>Address of the bookmark: <a href="https://www.broadinstitute.org/genome-sequencing-and-analysis/spines" rel="nofollow">https://www.broadinstitute.org/genome-sequencing-and-analysis/spines</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/30701/harvest</guid>
	<pubDate>Tue, 31 Jan 2017 10:57:56 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/30701/harvest</link>
	<title><![CDATA[Harvest]]></title>
	<description><![CDATA[<p>Harvest is a suite of core-genome alignment and visualization tools for quickly analyzing thousands of intraspecific microbial genomes, including variant calls, recombination detection, and phylogenetic trees.</p>
<p><a href="http://harvest.readthedocs.io/en/latest/_images/screen.png"><img src="http://harvest.readthedocs.io/en/latest/_images/screen.png" alt="_images/screen.png" style="border: 0px;"></a><span></span></p>
<p><strong>Tools</strong></p>
<ul>
<li><a href="http://harvest.readthedocs.io/en/latest/content/parsnp.html">Parsnp</a>&nbsp;- Core-genome alignment and analysis</li>
<li><a href="http://harvest.readthedocs.io/en/latest/content/gingr.html">Gingr</a>&nbsp;- Interactive visualization of alignments, trees and variants</li>
<li><a href="http://harvest.readthedocs.io/en/latest/content/harvest-tools.html">HarvestTools</a>&nbsp;- Archiving and postprocessing</li>
</ul>
<p><strong>Citation</strong></p>
<blockquote>
<div>Treangen TJ, Ondov BD, Koren S, Phillippy AM. The Harvest suite for rapid core-genome alignment and visualization of thousands of intraspecific microbial genomes. Genome Biology, 15 (11), 1-15 [<a href="http://www.biomedcentral.com/content/pdf/s13059-014-0524-x.pdf">PDF</a>]</div>
</blockquote><p>Address of the bookmark: <a href="http://harvest.readthedocs.io/en/latest/index.html" rel="nofollow">http://harvest.readthedocs.io/en/latest/index.html</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

</channel>
</rss>