{"componentChunkName":"component---src-templates-blog-post-js","path":"/blog/bioinformatic-analysis-for-biologists-part-23","result":{"pageContext":{"slug":"bioinformatic-analysis-for-biologists-part-23","body":"<p>In part 1, we described the steps involved in&nbsp;obtaining raw sequencing reads from ChIP-Seq libraries. We also explained how to choose an analysis pipeline that best suits your&nbsp;needs. In this post, we describe how to align the raw reads to a reference genome. Let's go!</p>\r\n<p>&nbsp;</p>\r\n<p><strong>Choose an aligner</strong></p>\r\n<p>The most important step in alignment is choosing the right 'aligner' tool for your data. We found that reading the user manuals and the theories behind each aligner did not help us much with choosing the right aligner. Each dataset is different, causing an aligner to behave differently. To be confident that we will be using an aligner that best suits our needs, we ran&nbsp;smaller experiments on individual datasets to enable fast&nbsp;inspection of the output.&nbsp;This <a href=\"https://en.wikipedia.org/wiki/List_of_sequence_alignment_software\">Wikipedia page</a>&nbsp;lists most of the aligners that we tried in our small-scale experiments. After comparing all the outputs, we decided to choose&nbsp;<a href=\"http://bowtie-bio.sourceforge.net/bowtie2/index.shtml\">bowtie 2</a>&nbsp;(we do&nbsp;not have any affiliation to bowtie or its creators; use at your own risk). The reasons were:</p>\r\n<ul>\r\n<li>Speed: bowtie aligned all of our datasets overnight.</li>\r\n<li>Simplicity: The online manual described the purpose of each optional&nbsp;parameter.</li>\r\n<li>Accuracy: Short repetitive regions, did not appear to cause a problem regarding introducing artifacts or noise.</li>\r\n</ul>\r\n<blockquote>\r\n<p><strong><em>We&nbsp;recommend you compare&nbsp;different aligners and, perhaps, run a trial with several. Pick the one that gives you the most robust output. For example, low variation among biological/technical replicates and good signal-to-noise ratios.</em></strong></p>\r\n</blockquote>\r\n<p>Regardless of the aligner that you choose, you will find that two important steps are required before you can start aligning the raw reads.</p>\r\n<ol>\r\n<li>Create a reference genome from publicly available genome sequencing projects</li>\r\n<li>Choose the proper parameters that tweak how the aligner treats your data</li>\r\n</ol>\r\n<p>Below we describe these two steps in more detail. Because we used bowtie 2 to align our reads, we will use this aligner as an example. However, the basics should be the same across different aligners.</p>\r\n<p>First, follow the 'getting started' instructions for your chosen aligner. The instructions for bowtie are simple and listed <a href=\"http://bowtie-bio.sourceforge.net/bowtie2/manual.shtml#getting-started-with-bowtie-2-lambda-phage-example\">on their website</a>. Briefly, you download the latest version for your operating system from <a href=\"https://sourceforge.net/projects/bowtie-bio/files/bowtie2/\">here</a>. To save time, we recommend you download the binary files (if available for the&nbsp;aligner) that&nbsp;can be used as soon as the download is finished. Save the downloaded files in a location that is easily accessible from the 'terminal' (e.g., /Applications/bowtie2).</p>\r\n<p>&nbsp;</p>\r\n<p><strong>The reference genome</strong></p>\r\n<p>Next, find and&nbsp;download the genome sequence in FASTA format. To get the genome assemblies for bacteria, yeast, worms, and flies, you can visit <a href=\"http://ensemblgenomes.org\">http://ensemblgenomes.org</a></p>\r\n<p>Usually, there is a 'download data' link on the page for the appropriate organism. Clicking on this link will open an FTP connection to the server hosting these files (the hosts permit guest access). Download the appropriate files that cover the entire genome, or parts of the genome that you are interested in and place these files in the same folder as the aligner tool.</p>\r\n<p>&nbsp;</p>\r\n<figure class=\"image\"><img src=\"https://cdn.buttercms.com/U8DnYD7Syij0Wjt7XNIS\" alt=\"website for downloading yeast reference genome\" />\r\n<figcaption>This is the page for downloading the reference genome of <em>S. pombe</em>. Click on 'download DNA sequence' to access the FASTA files. You can access the files as a guest user.</figcaption>\r\n</figure>\r\n<p>&nbsp;</p>\r\n<p>After placing the genome sequence files inside the bowtie folder, we ran the following command to create a reference genome index that can be used by the aligner. The generated index is unique to the aligner, so if you switch to a different&nbsp;aligner tool at a later time, you will need to create the reference genome index again using the method provided by the new aligner. To generate the index with bowtie, we executed&nbsp;the following command in terminal:</p>\r\n<pre class=\"language-undefined\"><code>bowtie2-build reference_genome_sequence.fa name_of_index</code></pre>\r\n<p>reference_genome_sequence.fa was placed inside the bowtie folder, and&nbsp;the above command was executed&nbsp;from inside the same folder. If the files are in different locations, don't forget to add the relative&nbsp;paths. Replace 'reference_genome_sequence' with the actual name of the FASTA file that was downloaded. Replace 'name_of_index' with a&nbsp;name of your choice&nbsp;(e.g. my_human_reference_v1).</p>\r\n<blockquote>\r\n<p><em>You can use the bowtie2-build function to create an index for a set of FASTA files obtained from sites such as UCSC, NCBI, and Ensembl.</em></p>\r\n</blockquote>\r\n<p>Before creating the index, you can customize the reference genome in any way you want. For example, you may need to add or remove a custom contig at&nbsp;a particular region. Caution:&nbsp;Do not use a text editor for editing the reference genome files&nbsp;(<a href=\"https://www.elucidaid.com/blog/bioinformatic-analysis-for-biologists-part-1\">see part 1</a>).</p>\r\n<p>&nbsp;</p>\r\n<p><strong>Align</strong></p>\r\n<p>After the index was&nbsp;created, we used the following 'for-loop' to sequentially perform alignment of each of our sequencing files. &nbsp;</p>\r\n<pre class=\"language-undefined\"><code>for sample in *.fastq.trimmed.gz; \r\ndo \r\necho $sample; \r\ndescriber=$(echo ${sample} | sed 's/.fastq.trimmed.gz//'); \r\necho $describer.sam; \r\n/Applications/bowtie2/bowtie2 -a -x pombe ./${describer}.fastq.trimmed.gz -S ./alighned/${describer}.sam; \r\ndone</code></pre>\r\n<p>The first line initiates the for-loop for&nbsp;all the files that end with 'fasta.trimmed.gz.' We arbitrarily call each file&nbsp;<em>sample</em>.&nbsp;The&nbsp;* is used to create a wild-card name match. Here, it means process&nbsp;all the file with a&nbsp;name that starts with any string, as long as it&nbsp;ends with&nbsp;fasta.trimmed.gz. Using this approach, we can safely have a bunch of other files (e.g., readme.txt) in the same folder along with the sequence files. However, the for-loop will only process the files that match the given wildcard. 'echo' just prints out the file name that is being processed (stored in the $sample variable). The command on line 4, extracts the first part of the file name (the unique part&nbsp;of the file name that is before&nbsp;fasta.trimmed.gz). We use this to create a new file name with the .sam extension (see below).</p>\r\n<p>If you want to align only one file, you can use line 5 (the bowtie2 alignment function) from the above for-loop. In our case, the bowtie2 program was placed inside the Applications folder, and we used the full path to call its function (/Applications/bowtie2/bowtie2). The -a flag is optional and is described below. The -x flag is required and indicates the name of the index file that we created earlier (pombe). The path to the raw sequence files is placed after the index name (./example.fastq.trimmed.gz). In our case, it was the current directory/folder (./). As mentioned in part 1, we are performing alignment on reads that were trimmed at the 5'. Since we were looping over all the sequencing files, we used the ${describer} variable that changed with each&nbsp;iteration of the for-loop. You can replace this variable with the actual name of a file that needs to be aligned. The -S parameters is optional and is used to ask bowtie to generate the output aligned files in the SAM format. Before running the alignment, we created a directory&nbsp;named 'aligned,' and inserted the path to this folder in front of the -S parameter. This caused the aligner to save the output files inside the 'aligned' folder.</p>\r\n<blockquote>\r\n<p><em>Read more about the SAM format: <a href=\"http://software.broadinstitute.org/software/igv/sam\">http://software.broadinstitute.org/software/igv/sam</a></em></p>\r\n</blockquote>\r\n<p>To create a directory&nbsp;using the terminal, you can run the make directory&nbsp;command (mkdir):</p>\r\n<pre class=\"language-undefined\"><code>mkdir aligned</code></pre>\r\n<p>After the alignment process is finished, you can visualize the SAM files using a visualization tool such as the <a href=\"http://software.broadinstitute.org/software/igv/home\">Integrative Genomics Viewer (IGV)</a>&nbsp;from the Broad Institute.</p>\r\n<p>&nbsp;</p>\r\n<p><strong>Sort and normalize aligned reads</strong></p>\r\n<p>You can get a lot of information from the aligned SAM files, and these may be sufficient for you. Alternatively, you may need to perform more complex analysis such as WT vs. mutant comparisons. For this purpose, it is necessary to perform some normalization to account for noise and technical variations that are introduced during ChIP-Seq procedure. This is an evolving field, and many alternative approaches are being used for normalizing ChIP-Seq data. We will go into more detail about the normalization methods in a later post, but, here, we give one example.</p>\r\n<p>An&nbsp;important step to enable normalization or visualization of the SAM files is to sort the aligned reads based on genomic location. To do this, we used SAM tools: <a href=\"https://anaconda.org/bioconda/samtools\">https://anaconda.org/bioconda/samtools</a></p>\r\n<p>After&nbsp;installing sam tools (see above link), &nbsp;we&nbsp;ran the following for-loop on the aligned sam files.</p>\r\n<pre class=\"language-undefined\"><code>for sample in *.sam; \r\ndo \r\necho $sample; \r\ndescriber=$(echo ${sample} | sed 's/.sam//'); \r\n/anaconda/bin/samtools view -bS ${describer}.sam | /anaconda/bin/samtools sort -o ${describer}.sorted.bam; \r\n/anaconda/bin/samtools index ${describer}.sorted.bam; \r\ndone</code></pre>\r\n<p>&nbsp;The for-loop is similar to the previously described loops. Here we use the sort function of samtools to generate sorted bam files (BAM format). These bam files make it super easy to perform normalization or any other mathematical processing on the aligned reads. You can inspect the content of the SAM and BAM files using the head or&nbsp;tail function, as described in part 1.</p>\r\n<p>After sorting the alignments, to perform normalization, we created a python script that uses the bedtools genomecov function: <a href=\"http://bedtools.readthedocs.io/en/latest/content/tools/genomecov.html\">http://bedtools.readthedocs.io/en/latest/content/tools/genomecov.html</a></p>\r\n<p>This python script was generated because we needed to perform additional calculations before using the genomecov tool (see comments inside the python script file). You can directly&nbsp;use the genomecov tool if no additional preprocessing of the reads is required. Visit our GitHub page to view the&nbsp;python script file: <a href=\"https://github.com/elucidaid/public-bioinformatics/blob/master/normalize.py\">https://github.com/elucidaid/public-bioinformatics/blob/master/normalize.py</a></p>\r\n<p>To use the normalize.py script, we performed the following command in terminal:</p>\r\n<pre class=\"language-undefined\"><code>/anaconda/bin/python.app ./lab/scripts/normalize.py --bam sampleA_TCCGCGAA.sorted.bam --bw sampleA.bedgraph</code></pre>\r\n<p>The output of the normalization step is a file with the bedgraph format.&nbsp;</p>\r\n<blockquote>\r\n<p><em>The bedGraph format allows display of continuous-valued data in track format. This display type is useful for probability scores and transcriptome data. This track type is similar to the wiggle (WIG) format, but unlike the wiggle format, data exported in the bedGraph format are preserved in their original state. </em></p>\r\n</blockquote>\r\n<p>In part 3, we will discuss how to use R to plot the bedgraph files that were generated by the bedrolls genomecov function.</p>\r\n<p>&nbsp;</p>\r\n<p><em>Free sample scripts&nbsp;available on our&nbsp;GitHub page: <a href=\"https://github.com/elucidaid/public-bioinformatics\">https://github.com/elucidaid/public-bioinformatics</a></em></p>\r\n<p><em>For <a href=\"https://www.elucidaid.com/repository/ebrahimih17\" target=\"_blank\" rel=\"noopener noreferrer\">sample genomic data used in this turtorial click here</a>.</em></p>\r\n<p><em>We do not have any&nbsp;affiliation to any of the tools mentioned in this blog post. </em></p>","postId":"5ad395bb-105a-59ed-b05e-4fc3b4a11f60","seo_title":"Bioinformatic analysis for biologists - part 2","meta_description":"In part 1, we described the steps involved in obtaining sequencing reads from ChIP-Seq libraries. We also described how to choose a analysis","previous":{"id":"4b494586-a4e0-563c-b297-552b54168d22","seo_title":"How to setup an electronic lab notebook","meta_description":"Learn how to set up an electronic lab notebook to improve workflow. Hint: electronic lab notebook free trial period is critical.","body":"<p><span style=\"text-decoration: underline;\"><strong><img src=\"https://cdn.buttercms.com/RzOS9MJyRxORwvOzBvGt\" alt=\"electronic lab notebook example\" caption=\"false\" style=\"display: block; margin-left: auto; margin-right: auto;\" width=\"739\" height=\"301\" /></strong></span></p>\n<h1 style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>How to properly set up an Electronic Lab Notebook</strong></span></h1>\n<h2></h2>\n<p>Electronic Lab Notebooks (ELNs) are created to help science based laboratories keep track of data, files, notes, inventory items. Many additional time and money-saving features like team management and reporting may also be offered by some ELN options. Maybe you have just subscribed to a new Electronic Lab Notebook (ELN) service or maybe you're evaluating different options. Whatever the reason, it is important to be aware of the best practices when using an ELN system. It is important to note that the ELN market is a relatively young software market trying to meet the needs of a very diverse laboratory based activity ecosystem. For this reason there is no one set of standard guidelines to follow. There are however some things to consider when devising your own set of standards to maintain a high quality digital version of your research notebook.</p>\n<p></p>\n<h2>Step 1 - Choose the right software</h2>\n<p>As biotech, pharmaceutical and academic research industries have become aware of the many benefits of Electronic Lab Notebook systems (ELN), the demand for ELN has grown substantially. Fortunately, in response, the number of available <a href=\"https://www.limswiki.org/index.php/Aiderbotics_Corporation\" rel=\"follow\">ELN software applications</a> on the market has also increased to more than 60.</p>\n<p>Unlike the general-purpose word processing and note-taking apps (e.g., MS Word, <a href=\"https://evernote.com\" rel=\"follow\">Evernote</a>), each ELN app has a unique set of features that meet specific demands. You can see how a dedicated lab notebook app is different from a general note taking tool like <a href=\"https://evernote.com\" rel=\"follow\">Evernote</a> by requesting a <a href=\"https://labnotebook.app/request-demo\" rel=\"follow\">demo here</a>.</p>\n<p>Two broad criteria that can define the suitability of a particular ELN system are the field of research (e.g. Microbiology vs Neuroscience) and the working environment (Academia vs Industry). For example, a scientist working in a chemistry lab and a research scientist working in a cell biology lab may find entirely different ELN software suitable for their research. Also, teams working in a research environment have a different set of requirements from those working in Quality Assurance/Quality Control (QA/QC). <a href=\"https://labnotebook.app/fda\" target=\"_blank\" rel=\"noopener noreferrer\">Click here</a> to learn more about how LabLog<span>&trade;</span> supports R&amp;D and QA/QC environments.</p>\n<p>Other criteria that may define the suitability of an ELN can include:</p>\n<ul>\n<li>Lab budget (free vs. paid software)</li>\n<li>Compliance with regulations and standards (FDA part 11)</li>\n<li>The need to backup on the cloud (unlimited storage on the cloud)</li>\n<li>The need to share notes and files</li>\n<li>The requirement for 24/7 support provided by a local team</li>\n<li>The need for both offline and online access to your records.</li>\n</ul>\n<p>The availability of a vast variety of ELNs on the market makes it more likely for researchers to find a suitable solution. However, due to time constraints, it's hard to assess every single solution before settling on one. It is essential that you choose the right software from the outset of the transition from paper notebooks. For this purpose, it is important to discuss your requirements with a number of software vendors.</p>\n<p>At LabLog<span>&trade;</span>, we have a lot of experience working with clients in biotech and pharmaceutical industries to understand their specific needs and provide a suitable electronic lab notebook free of charge. The purchasing process usually entails collaboration between the regulatory and scientific teams within the client organization. After discussions with the vendor, the client is allowed to test out the solution for a limited free trial period. At LabLog, depending on the size of the client organization, we may deploy an engineer to work with the clients on-site to setup the solution for the free trial period. If the individual organization decides to proceed with the purchasing, the next step will be vendor and software validation. The specifics of this stage will depend on client regulatory requirements. LabLog has a team of in-house regulatory affairs personnel that can work with clients during the validation process. Additionally, audit reports and other relevant documents will be shared with individual clients. A brief overview of these procedures can be discussed during the initial <a href=\"https://labnotebook.app/request-demo\" target=\"_blank\" rel=\"noopener\">product demo</a>.</p>\n<p></p>\n<p style=\"text-align: center;\"><iframe width=\"560\" height=\"315\" src=\"//www.youtube.com/embed/UHJzmRirfwY\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen=\"allowfullscreen\"></iframe>&nbsp;</p>\n<h2><span style=\"text-decoration: underline;\"><strong></strong></span></h2>\n<h2><span style=\"text-decoration: underline;\"><strong>Step 2- Setting up your digital notebook</strong></span></h2>\n<p>We cannot emphasize enough the importance of choosing the right ELN from the outset. This is because<em><strong> each digital notebook will have its characteristics and flexibility concerning layout and setup</strong></em>. For example, the simple user interface of LabLog<span>&trade;</span> mimics the design of a word-processing software so that it is familiar to the user and does not require any training to get started immediately. Whatever your final choice of ELN, we recommend following the steps below to set yourself up for success when transitioning from paper notebooks:</p>\n<ol>\n<li><strong><span style=\"text-decoration: underline;\">Think long-term:</span>&nbsp;</strong>Unlike paper notebooks, electronic notebooks can last as long as your research career. They also can follow you everywhere you go, because they will be on the cloud, allowing you to sync notes whenever you get a new computer or mobile device. So when setting up your notes in&nbsp;the first few weeks of transitioning from paper, it is a good idea to have an idea of how your notebook can be a <strong>return on investment</strong> not only <strong>in a few months but also in many years</strong> to come. Good lab notebook software solutions have powerful search functionality that allow finding old notes in a matter of seconds. A powerful search functionality is sure to save you lots of time in the lab.</li>\n<li><span style=\"text-decoration: underline;\"><strong>Ask about the vendor's plans:</strong></span><strong>&nbsp;</strong>Here is a secret about ELN vendors:&nbsp;<em>They are, or at least&nbsp;should be, looking for innovative ways to get more researchers to transition from paper and stick to digital notebooks.</em>&nbsp;Drop an email to the creators and ask them about their plans, are they going to use the latest technological advances to make laboratory note-taking as painless as possible.</li>\n<li><span style=\"text-decoration: underline;\"><strong>Be creative:</strong></span> A great benefit of an ELN is that, although it may appear more rigid than paper at first, it is extremely flexible and forgiving regarding layout and organization.&nbsp;This is because, unlike paper notebooks, ELNs utilize robust keyword extraction and search functions. So it is almost always guaranteed that you can find your notes, no matter how old they become. This allows you to experiment with and adopt certain note-taking strategies. For example, you may prefer chronologically ordered notes or order notes based on projects or sub-projects.</li>\n<li><strong><span style=\"text-decoration: underline;\">Value sharing and collaboration:</span></strong>&nbsp;Do you want to increase your chances of success in research substantially? A good ELN app makes sharing and collaboration seamless. This is a huge benefit over traditional paper notebooks. Imagine you have moved on to a new lab, and a new postdoc in your former lab is following up on a side project that you were working on. The ability to share your valuable notes and collaborate will sure get your name on more papers. Not only that, an ELN that&nbsp;fosters sharing and collaboration&nbsp;is directly promoting better organized and more clear notes that can be passed between many generations of scientists and, perhaps, finally leading to a significant discovery. It is nice to know that the origins of each note that resulted in that major discovery can be traced to its original author (you!).</li>\n</ol>\n<p>&nbsp;</p>\n<p><span style=\"text-decoration: underline;\"><strong>Conclusion</strong></span></p>\n<p>Choose the right ELN, be creative, have fun, and let the ELN do all the heavy lifting for you. You can always rearrange electronic notes, and use the search function to find anything you need with just one click.</p>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>","title":"How to set up an Electronic Lab Notebook","slug":"how-to-setup-an-electronic-lab-notebook"},"next":{"id":"4f2461f9-f536-5d0e-9a7f-1e5d8a732a89","seo_title":"12 Best Cell Biology Bloggers You Need to Follow","meta_description":"Recently, at a dinner gathering with a few of my scientist friends, I was asked what I think is the best cell biology blog. Here's my pick!","body":"<p style=\"text-align: center;\">&nbsp;<img src=\"https://cdn.buttercms.com/s9ddIwj0RN2ImMpV38Dg\" alt=\"\" width=\"469\" height=\"470\" /></p>\r\n<p>Recently, at a dinner gathering with a few of my scientist friends, I was asked what I think is the best cell biology blog. It&rsquo;s hard to tell because most cell biology blogs have their own specific topic or their own &ldquo;voice&rdquo;. While I do not have one favorite blog, there are few I read on a regular basis.</p>\r\n<p>The following is my selection of what I think are top cell biology blogs. Unfortunately, smaller blog sites have a high turnover rate, and I will try to keep this list updated&nbsp;to the best of my ability. If you notice a broken link, leave a comment on our<a href=\"https://www.facebook.com/elucidaid/\"> facebook page</a>. Suggestions will be appreciated.</p>\r\n<p><strong><a href=\"https://diaryofacancercell.blogspot.co.uk\" target=\"_blank\" rel=\"noopener noreferrer\">Diary of a cancer cell</a>:&nbsp;</strong>Read&nbsp;about&nbsp;the science behind cancer from the unique point of view of a little cancer cell, who doesn't want to be bad. Accurate science and humor, a light read for anyone who wishes to understand the disease a little better.</p>\r\n<p>&nbsp;<strong><a href=\"https://biobeat.nigms.nih.gov\" target=\"_blank\" rel=\"noopener noreferrer\">NIH Biomedical Beat Blog</a>:&nbsp;</strong>This blog is from the National Institute of General Medical Sciences (NIGMS). It publishes short articles about research and scientists as well as images that help illustrate important biomedical concepts and advances.</p>\r\n<p>&nbsp;<strong><a href=\"http://littlecellbiologyblog.tumblr.com\" target=\"_blank\" rel=\"noopener noreferrer\">Little Cell Biology Blog</a>:&nbsp;</strong>Science-related articles that appeal to a wide audience. You can ask questions and post your own articles.</p>\r\n<p>&nbsp;<strong><a href=\"http://blogs.plos.org/biologue/\" target=\"_blank\" rel=\"noopener noreferrer\">PLOS&nbsp;Biologue</a>: </strong>Blog posts cover the latest research and discussions from open access publishing developments and science policy, to science outreach and education, and the implications of new discoveries in biological research.</p>\r\n<p>&nbsp;<strong><a href=\"https://the-niche.blog\" target=\"_blank\" rel=\"noopener noreferrer\">The Niche</a>:&nbsp;</strong>Dr. Paul Knoepfler (@pknoepfler) is a biomedical scientist, science writer, advocate, and cancer survivor. This blog is maitained by his team.</p>\r\n<p><strong><a href=\"http://blog.delmic.com\" target=\"_blank\" rel=\"noopener noreferrer\">DELMIC Microscopy Blog</a>:&nbsp;</strong>DELMIC B.V. is a company based in the Netherlands that produces correlative light and electron microscopy solutions.&nbsp;This blog covers the applications and techniques in the fields of correlative light and electron microscopy.</p>\r\n<p>&nbsp;<strong><a href=\"http://blog.addgene.org\" target=\"_blank\" rel=\"noopener noreferrer\">Addgene</a>:&nbsp;</strong>Addgene is a non-profit service provider for life science research. Addgene's blog provides a platform to share information.</p>\r\n<p><strong><a href=\"http://blogs.nature.com/methagora/\" target=\"_blank\" rel=\"noopener noreferrer\">Nature Methods Blog</a></strong></p>\r\n<p><strong><a href=\"http://thebioblog.com\" target=\"_blank\" rel=\"noopener noreferrer\">The Biology Blog</a>:&nbsp;</strong>Molecular and Cell Biology new, articles and tips. This blog publishes focused news, articles, and tips for both professional and non-professional readers.</p>\r\n<p><a href=\"https://www.ibiology.org\" target=\"_blank\" rel=\"noopener noreferrer\"><strong>iBiology:</strong></a>&nbsp;High-quality videos describing exciting topics in biology, from basic techniques to important discoveries.</p>\r\n<p><a href=\"https://jchoigt.wordpress.com\" target=\"_blank\" rel=\"noopener noreferrer\"><strong>Jung's Biology Blog:</strong></a>&nbsp;One of the longest running personal blogs I have come across. Interesting posts from a professor's point of view.</p>\r\n<p><strong><a href=\"https://blog.rsb.org.uk\" target=\"_blank\" rel=\"noopener noreferrer\">Royal Society of Biology blog</a>:</strong> Short posts discussing the current topics in biology-related fields and community outreach activities.</p>\r\n<p><strong><a href=\"https://peerj.com/blog/\" target=\"_blank\" rel=\"noopener noreferrer\">PeerJ Blog</a>:</strong> Stimulating blog posts discuss&nbsp;recent&nbsp;findings in biology and related fields.</p>\r\n<p><em><strong>Pro tip:</strong> </em>Perform a search on <a href=\"https://medium.com/\" target=\"_blank\" rel=\"noopener noreferrer\">Medium.com</a>&nbsp;to read the latest blog posts about biology from a collection of bloggers on this platform.</p>\r\n<blockquote>\r\n<p><em>Medium taps into the brains of the world&rsquo;s most insightful writers, thinkers, and storytellers to bring you the smartest takes on topics that matter. So whatever your interest, you can always find fresh thinking and unique perspectives.</em></p>\r\n</blockquote>\r\n<p>Here are some related results on Medium: <a href=\"https://medium.com/search?q=biology\">https://medium.com/search?q=biology</a></p>\r\n<p>Here's a sample of a personal blog related to biology: <a href=\"https://medium.com/@scienceguy\">https://medium.com/@scienceguy</a></p>\r\n<p>What&rsquo;s your favorite cell biology blog and why? Share on our Facebook page: <a href=\"https://www.facebook.com/LabNotebookApp\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.facebook.com/LabNotebookApp</a></p>\r\n<p>This blog is run by LabLog: <a href=\"https://labnotebook.app\" target=\"_blank\" rel=\"noopener noreferrer\">https://labnotebook.app</a></p>\r\n<div class=\"grammarly-disable-indicator\">If you enjoyed reading this post, support us by learning more about LabLog <a href=\"https://labnotebook.app\" target=\"_blank\" rel=\"noopener\">https://labnotebook.app</a></div>\r\n<div class=\"grammarly-disable-indicator\"></div>\r\n<div class=\"grammarly-disable-indicator\"></div>","title":"12 Best Cell Biology Bloggers You Need to Follow","slug":"12-best-cell-biology-bloggers-you-need-to-follow"}}},"staticQueryHashes":["3128451518"]}