<?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/44731?offset=270</link>
	<atom:link href="https://bioinformaticsonline.com/related/44731?offset=270" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	
<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/researchlabs/view/5623/yau-group</guid>
  <pubDate>Tue, 15 Oct 2013 13:05:15 -0500</pubDate>
  <link></link>
  <title><![CDATA[Yau Group]]></title>
  <description><![CDATA[
<p>Yau Group are a new research group based at the Wellcome Trust Centre for Human Genetics and the Department of Statistics at the University of Oxford.</p>

<p>Yau Group develops statistical and computational methods for the analysis of genomic datasets with a particular interest in cancer sequencing applications and the use of Bayesian Statistics.</p>

<p>Yau Group are currently have projects in somatic mutation analysis of heterogeneous cancers, data fusion or integration techniques and single cell genomics.</p>

<p>More @ http://www.well.ox.ac.uk/~cyau/index.html</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/44707/rna-seq-analysis-a-guide-for-bioinformaticians</guid>
	<pubDate>Sat, 07 Dec 2024 22:22:24 -0600</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/44707/rna-seq-analysis-a-guide-for-bioinformaticians</link>
	<title><![CDATA[RNA-Seq Analysis: A Guide for Bioinformaticians]]></title>
	<description><![CDATA[<p>RNA sequencing (RNA-Seq) has revolutionized transcriptomics, offering unprecedented insights into gene expression, splicing, and transcript diversity. For bioinformaticians, RNA-Seq analysis is a gateway to exploring the complexity of RNA biology and its implications in health and disease. This blog post provides an overview of RNA-Seq analysis, key computational steps, and tools for bioinformaticians eager to delve into this powerful technique.</p><h3>What is RNA-Seq?</h3><p>RNA-Seq is a next-generation sequencing (NGS) technology used to study the transcriptome&mdash;the complete set of RNA molecules in a cell. It quantifies gene expression, detects novel transcripts, and captures alternative splicing events with high sensitivity and resolution.</p><h3>Workflow for RNA-Seq Analysis</h3><p>RNA-Seq analysis involves several stages, each requiring computational tools and expertise.</p><h4>1. <strong>Experimental Design and Data Acquisition</strong></h4><p>Before diving into analysis, bioinformaticians should consider:</p><ul>
<li><strong>Biological Replicates</strong>: Ensure statistical power to detect meaningful differences.</li>
<li><strong>Sequencing Depth</strong>: Align sequencing depth to study objectives (e.g., higher depth for low-abundance transcripts).</li>
<li><strong>Paired-End vs. Single-End</strong>: Paired-end sequencing provides more detailed information on transcript structure.</li>
</ul><p>Once sequencing is complete, raw data is provided in FASTQ format, containing sequence reads and quality scores.</p><h4>2. <strong>Quality Control and Preprocessing</strong></h4><p>Quality control (QC) ensures data integrity. Tools such as <strong>FastQC</strong> evaluate metrics like base quality, GC content, and adapter contamination.</p><p><strong>Preprocessing Steps</strong>:</p><ul>
<li><strong>Trimming</strong>: Tools like <strong>Trimmomatic</strong> or <strong>Cutadapt</strong> remove low-quality bases and adapter sequences.</li>
<li><strong>Filtering</strong>: Discard reads below a certain quality threshold or length.</li>
</ul><h4>3. <strong>Read Alignment</strong></h4><p>Reads are mapped to a reference genome or transcriptome to determine their origin. Alignment tools include:</p><ul>
<li><strong>HISAT2</strong>: Handles large genomes efficiently and supports spliced alignments.</li>
<li><strong>STAR</strong>: High-speed aligner optimized for RNA-Seq.</li>
<li><strong>Bowtie2</strong>: Suitable for short-read alignment.</li>
</ul><p><strong>Output</strong>: A SAM/BAM file containing aligned reads.</p><h4>4. <strong>Transcript Assembly and Quantification</strong></h4><p>This step involves identifying transcripts and quantifying their expression levels. Tools used include:</p><ul>
<li><strong>StringTie</strong>: Assembles and quantifies transcripts from aligned reads.</li>
<li><strong>Salmon/Kallisto</strong>: Perform pseudo-alignment for rapid and accurate quantification.</li>
</ul><p>Expression levels are typically measured as TPM (transcripts per million) or FPKM (fragments per kilobase of transcript per million mapped reads).</p><h4>5. <strong>Differential Expression Analysis</strong></h4><p>To identify genes with altered expression between conditions, bioinformaticians use tools such as:</p><ul>
<li><strong>DESeq2</strong>: Accounts for data normalization and variability.</li>
<li><strong>edgeR</strong>: Handles overdispersed count data efficiently.</li>
<li><strong>Limma-voom</strong>: Combines linear modeling with RNA-Seq count data.</li>
</ul><p>The output includes a list of differentially expressed genes (DEGs) with statistical significance and fold-change values.</p><h4>6. <strong>Functional Annotation and Pathway Analysis</strong></h4><p>Understanding the biological significance of DEGs involves:</p><ul>
<li><strong>Gene Ontology (GO) Analysis</strong>: Tools like <strong>DAVID</strong> or <strong>clusterProfiler</strong> categorize genes based on their biological functions.</li>
<li><strong>Pathway Enrichment Analysis</strong>: Identifies pathways enriched in DEGs using tools like <strong>KEGG</strong>, <strong>Reactome</strong>, or <strong>GSEA</strong>.</li>
</ul><h4>7. <strong>Visualization</strong></h4><p>Visualizing results enhances interpretability. Common visualizations include:</p><ul>
<li><strong>Heatmaps</strong>: Show expression patterns across samples (e.g., <strong>pheatmap</strong>).</li>
<li><strong>Volcano Plots</strong>: Highlight significant DEGs (e.g., <strong>ggplot2</strong>).</li>
<li><strong>PCA/UMAP</strong>: Assess sample clustering and variability (e.g., <strong>Seurat</strong>).</li>
</ul><h3>Challenges in RNA-Seq Analysis</h3><ol>
<li><strong>Batch Effects</strong>: Technical variability can confound biological signals. Combat this with normalization techniques or batch-correction tools like <strong>ComBat</strong>.</li>
<li><strong>Low-Quality Samples</strong>: Poor-quality RNA impacts downstream analyses.</li>
<li><strong>Computational Complexity</strong>: RNA-Seq generates massive datasets, requiring robust computing resources and optimized pipelines.</li>
</ol><h3>Key Tools and Resources</h3><ul>
<li><strong>Bioconductor</strong>: A treasure trove of R packages for RNA-Seq analysis.</li>
<li><strong>Galaxy</strong>: A web-based platform for running RNA-Seq workflows.</li>
<li><strong>Nextflow/Snakemake</strong>: Workflow management tools to streamline analyses.</li>
</ul><h3>Applications of RNA-Seq</h3><p>RNA-Seq is used in diverse research areas, including:</p><ul>
<li><strong>Cancer Transcriptomics</strong>: Identifying tumor-specific expression profiles.</li>
<li><strong>Developmental Biology</strong>: Studying dynamic transcriptome changes.</li>
<li><strong>Drug Discovery</strong>: Screening genes modulated by therapeutic compounds.</li>
</ul><h3>Conclusion</h3><p>RNA-Seq analysis is a cornerstone of modern transcriptomics, offering bioinformaticians a versatile toolkit for unraveling gene expression and regulation. Mastering RNA-Seq workflows and tools empowers researchers to transform raw sequencing data into biological discoveries.</p><p>Whether you&rsquo;re investigating disease mechanisms, exploring cellular pathways, or developing new therapeutics, RNA-Seq is a powerful ally in your bioinformatics arsenal.</p>]]></description>
	<dc:creator>LEGE</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/7218/associate-professor-centre-for-bioinformatics-at-maharshi-dayanand-university-rohtak</guid>
  <pubDate>Thu, 12 Dec 2013 20:49:59 -0600</pubDate>
  <link></link>
  <title><![CDATA[Associate Professor - Centre for Bioinformatics at Maharshi Dayanand University, Rohtak]]></title>
  <description><![CDATA[
<p>ADVERTISEMENT No. PR-54/2013</p>

<p>No. of Posts and Specialization: 1(UR)</p>

<p>Educational Qualification:</p>

<p>(i) Good academic record with a Ph.D. Degree in the concerned /allied /relevant disciplines.</p>

<p>(ii) The Ph.D. Degree shall be a mandatory qualification for all candidates to be appointed as Associate Professor through direct recruitment.</p>

<p>(iii) A Master‟s Degree with at least 55% marks (or an equivalent grade in a point scale wherever grading system is followed).</p>

<p>(iv) A minimum of eight years of experience of teaching and /or research in an academic /research position equivalent to that of Assistant Professor in a University, College or Accredited Research Institution/Industry excluding the period of Ph.D research with evidence of published work and a minimum of 5 publications as books and /or research papers in refereed journals only/policy papers.</p>

<p>(v) Contribution to educations innovation, design of new curricula and courses and technology-mediated teaching learning process with evidence of having guided doctoral candidates and research students.</p>

<p>(vi) A minimum score as stipulated in the Academic Performance Indicator (API) based performance Based Appraisal System (PBAS), set out in this notification in as mentioned in the advertisement.</p>

<p>Send your application to the A.R (Estt.Teaching), M.D.University, Rohtak on or before December 23, 2013.</p>

<p>For more details: http://www.mdurohtak.ac.in/pdf/Notices_Pdf/new_notice/Teaching%20Vacancy%20%28ADVT.%20No.%20PR-54%20of%202013%29.pdf</p>

<p>Last Apply Date: 23 Dec 2013</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/44741/bioinformatician-in-pipeline-development</guid>
  <pubDate>Tue, 17 Dec 2024 23:43:54 -0600</pubDate>
  <link></link>
  <title><![CDATA[Bioinformatician in pipeline development]]></title>
  <description><![CDATA[
<p>Are you interested in working with pipeline development in bioinformatics, with the support of competent and friendly colleagues in an international environment? Are you looking for an employer that invests in sustainable employeeship and offers safe, favourable working conditions? We welcome you to apply for a position as Bioinformatician in pipeline development at Uppsala University.</p>

<p>National Bioinformatics Infrastructure Sweden (NBIS) (nbis.se) plays an important role in advancing life science research in Sweden by providing expert support and developing cutting-edge bioinformatics infrastructure. Operating as a truly national initiative, NBIS employs more than 120 bioinformaticians, system developers, and data stewards across multiple locations in Sweden. It serves as the bioinformatics platform at SciLifeLab, a national resource that facilitates research in molecular biosciences by offering access to state-of-the-art technologies and technical expertise. With strong ties to data-producing facilities and ongoing collaborations with leading research groups, NBIS is ideally positioned to support world-class bioinformatics analyses. Furthermore, NBIS is the Swedish node in ELIXIR, the European infrastructure for biological information.</p>

<p>NBIS is seeking an experienced bioinformatician to support both Swedish and international projects. As part of our dynamic team, you will work closely with researchers to process large-scale biological data and contribute to advancing our data analysis infrastructure. Strong problem-solving skills, attention to detail, and the ability to troubleshoot complex bioinformatics pipelines are essential for success in this role. Flexibility and a willingness to learn are also important, as NBIS continually adapts to meet the evolving needs of the Swedish research community.</p>

<p>More at https://www.uu.se/en/about-uu/join-us/jobs-and-vacancies/job-details?query=778701</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/5888/nit-calicut-faculty-jobs-2013-in-bioinformatics</guid>
  <pubDate>Thu, 24 Oct 2013 13:00:37 -0500</pubDate>
  <link></link>
  <title><![CDATA[NIT Calicut Faculty Jobs 2013 in Bioinformatics]]></title>
  <description><![CDATA[
<p>NATIONAL INSTITUTE OF TECHNOLOGY CALICUT, KERALA</p>

<p>NOTIFICATION FOR FACULTY RECRUITMENT – 2013</p>

<p>(Faculty openings in Technology, Science, Architecture and Management at NIT Calicut, Kerala)</p>

<p>National Institute of Technology Calicut, Kerala, established under Act XXIX/ 2007of the Parliament is one of the leading technological institutions in the Country with nearly 6000 students enrolled for various UG, PG and Ph.D. programmes in Technology, Science, Architecture and Management. The Institute invites applications from Indian nationals, possessing consistent excellent academic record, commitment to quality teaching and potential for carrying out outstanding research, for the post of Assistant Professors in various departments against the backlog reserved vacancies for Scheduled Caste (SC), Scheduled Tribe (ST), Other Backward Communities (OBC) and Persons with Disabilities (PWDs) and also under open merit quota as detailed below. Candidates belonging to SC, ST and OBC desirous of considering for selection under UR category also shall specifically indicate so in column 4.</p>

<p>Reservation quota for PWDs will be counted against the respective community. Young, meritorious, dynamic and student friendly academicians are welcome to join hands with the existing team in their effort to transform this Institute to a world class educational institution.</p>

<p>Candidates possessing Ph.D. degree will be considered for appointment on contract basis initially.</p>

<p>They will be considered for movement to AGP `7000 after one year of satisfactory performance.</p>

<p>Meritorious candidates possessing M.Tech./M.Phil. (*) with remarkably good potential to carry out outstanding research and already pursuing Ph.D. or aspiring to pursue Ph.D. will also be considered for appointment on contract, initially for a period of 3 years, extendable for a further period of 2 years on a year to year basis or till the candidate acquires Ph.D. degree whichever is earlier. Renewal of contract<br />will be done on an annual basis, subject to satisfactory progress of Ph.D. work, good conduct and good performance in teaching. Faculty appointed on contract basis will not be treated as regular staff till they are regularized, subject to the conditions stated earlier. The Institute has adopted 4-tier flexible faculty structure recommended by MHRD. </p>

<p>More Info : http://www.nitc.ac.in/index.php/?url=content/submenu/2345/5</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/44760/the-future-of-bioinformatics-innovations-and-opportunities</guid>
	<pubDate>Mon, 20 Jan 2025 12:44:53 -0600</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/44760/the-future-of-bioinformatics-innovations-and-opportunities</link>
	<title><![CDATA[The Future of Bioinformatics: Innovations and Opportunities]]></title>
	<description><![CDATA[<p>Bioinformatics, the interdisciplinary field that merges biology, computer science, and statistics, has transformed the way we understand biological systems. As we stand at the cusp of a new era in scientific discovery, the future of bioinformatics promises even greater advancements, powered by cutting-edge technologies and a growing understanding of life&rsquo;s complexities.</p><h4>1. Big Data and Bioinformatics</h4><p>The exponential growth in biological data, driven by advancements in sequencing technologies and high-throughput experiments, has made bioinformatics an indispensable tool. By 2030, we anticipate:</p><ul>
<li>
<p><strong>Petabyte-Scale Data Management</strong>: Enhanced storage solutions and cloud computing platforms will allow researchers to handle the vast amounts of data generated from omics studies, including genomics, transcriptomics, and proteomics.</p>
</li>
<li>
<p><strong>AI and Machine Learning Integration</strong>: Sophisticated algorithms will uncover patterns and relationships in large datasets, enabling predictions about gene function, disease susceptibility, and therapeutic outcomes.</p>
</li>
</ul><h4>2. Personalized Medicine and Genomics</h4><p>Bioinformatics will play a pivotal role in tailoring healthcare to individual patients. Key developments include:</p><ul>
<li>
<p><strong>Whole-Genome Sequencing in Clinics</strong>: The decreasing cost of sequencing will make it routine in medical diagnostics, enabling personalized treatment plans based on an individual&rsquo;s genetic makeup.</p>
</li>
<li>
<p><strong>Drug Repurposing and Development</strong>: Computational tools will identify potential new uses for existing drugs, accelerating the development of targeted therapies.</p>
</li>
</ul><h4>3. Advancing Computational Tools</h4><p>The future will see the development of more user-friendly and powerful bioinformatics tools:</p><ul>
<li>
<p><strong>Graph-Based Approaches</strong>: Enhanced algorithms for analyzing complex biological networks, such as protein-protein interaction maps.</p>
</li>
<li>
<p><strong>Visualization Tools</strong>: Intuitive software for visualizing multi-dimensional data, enabling researchers to interpret findings more effectively.</p>
</li>
</ul><h4>4. Synthetic Biology and Systems Biology</h4><p>Bioinformatics will continue to drive progress in synthetic and systems biology by:</p><ul>
<li>
<p><strong>Gene Circuit Design</strong>: Leveraging computational models to design and simulate synthetic biological systems.</p>
</li>
<li>
<p><strong>Understanding Cellular Pathways</strong>: Integrating multi-omics data to model cellular processes with unprecedented accuracy.</p>
</li>
</ul><h4>5. Bioinformatics in Agriculture and Environmental Science</h4><p>Beyond healthcare, bioinformatics will revolutionize agriculture and environmental conservation:</p><ul>
<li>
<p><strong>Crop Improvement</strong>: Genomic studies will help develop high-yield, disease-resistant, and climate-resilient crops.</p>
</li>
<li>
<p><strong>Microbial Ecology</strong>: Metagenomics will enhance our understanding of microbial communities, aiding in bioremediation and ecosystem management.</p>
</li>
</ul><h4>6. Democratization of Bioinformatics</h4><p>Open-source software and accessible education will broaden participation in bioinformatics research:</p><ul>
<li>
<p><strong>Community-Driven Projects</strong>: Collaborative platforms like GitHub will continue to foster innovation in tool development.</p>
</li>
<li>
<p><strong>Education and Training</strong>: Online courses and workshops will bridge skill gaps, enabling researchers from diverse backgrounds to contribute.</p>
</li>
</ul><h4>Challenges and Ethical Considerations</h4><p>While the future is bright, challenges remain. Data privacy and ethical concerns surrounding genetic information require careful navigation. Furthermore, addressing the digital divide is critical to ensuring equitable access to bioinformatics resources globally.</p><h4>Conclusion</h4><p>The future of bioinformatics is boundless, with opportunities to revolutionize our understanding of life and improve human health. As technologies evolve and collaborations flourish, bioinformatics will undoubtedly remain at the forefront of scientific discovery, unlocking the secrets of life one dataset at a time.</p>]]></description>
	<dc:creator>BioStar</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/5958/srfjrf-national-institute-of-immunology</guid>
  <pubDate>Wed, 30 Oct 2013 06:45:57 -0500</pubDate>
  <link></link>
  <title><![CDATA[SRF/JRF @ National Institute of Immunology]]></title>
  <description><![CDATA[
<p>ADVERTISEMENT OF WALK-IN-INTERVIEW</p>

<p>NAME OF THE POST : SRF/JRF (Four Posts only)</p>

<p>DURATION : Indicated with the respective project mentioned below:</p>

<p>NAME OF THE PROJECT : As Mentioned below:</p>

<p>1. Serological diversity and molecular characterization of Dichelobector nodusus and development of vaccine against virulent footroot funded by NAIP. (Tenable upto 31.03.2014)</p>

<p>2. Development of oral vaccine against Clostridium perfringenes employing translational fusion of immunodominant epitopes of beta toxin with heat labile entertoxin B funded by DBT. (Tenable upto 25.02.2014)</p>

<p>3. Indo-Norwegian project, “Evaluation of major porins, ompC and ompR of Areomonas hydrophila as potential vaccine candidates and identification and characterization of immune genes of Indian major carp, Labeo rohita” (Tenable upto 31.03.2014)</p>

<p>EDUCATIONAL QUALIFICATIONS: For JRF- M.Sc/M.Tech in any subject of Biological  Sciences/Life Sciences</p>

<p>For SRF- M.Sc/M.Tech in any subject of Biological Sciences/Life Sciences with 2 years of Research Experience.</p>

<p>JOB DESCRIPTION : The Candidate should have experience in gene Expression, protein purification, molecular biology techniques and bioinformatics<br />EMOLUMENTS : SRF: Rs. 18,000/- per month consolidated plus 30% HRA if /NET/GATE qualified otherwise Rs. 14,000/- per month consolidated + 30% HRA.</p>

<p>JRF: Rs. 16,000/- per month consolidated + 30% HRA if NET/GATE qualified otherwise Rs. 12,000/- per month consolidated + 30% HRA</p>

<p>SCIENTIST NAME : Dr. Lalit C. Garg, SS-VII (Gene Regulation Lab)</p>

<p>SCIENTIST’S EMAIL : lalit@nii.ac.in</p>

<p>WALK IN INTERVIEW ON : October 31st, 2013</p>

<p>REGISTRATION OF CANDIDATES: 10.30 AM to 11.00 AM </p>

<p>Advertisement: http://www1.nii.res.in/sites/default/files/project-Dr.Lalit-31oct2013.pdf</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/44871/10-books-to-kickstart-and-level-up-your-bioinformatics-journey</guid>
	<pubDate>Tue, 12 Aug 2025 03:50:11 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/44871/10-books-to-kickstart-and-level-up-your-bioinformatics-journey</link>
	<title><![CDATA[10 Books to Kickstart (and Level Up) Your Bioinformatics Journey]]></title>
	<description><![CDATA[<p>If you&rsquo;re starting out in bioinformatics or looking to sharpen your computational biology skills, having the right learning resources makes all the difference.<br />Here&rsquo;s my curated list of 10 must-read books &mdash; from beginner-friendly introductions to advanced computational genomics.</p><p>1️⃣ Data Analysis for the Life Sciences<br />A fantastic starting point to learn statistics, R programming, and exploratory data analysis in the context of biology. The best part? It&rsquo;s available free online from HarvardX.</p><p>2️⃣ Practical Computing for Biologists<br />The very first book I picked up when I started learning computational biology. It&rsquo;s beginner-friendly and focuses on essential computing skills every biologist needs.</p><p>3️⃣ A Primer for Computational Biology<br />An open-access, hands-on introduction to computational biology concepts and coding techniques. Perfect if you want to learn through real examples.</p><p>4️⃣ Computational Genomics with R<br />For those who already know R and want to dive deeper into genome-scale data analysis, from sequence alignment to gene expression.</p><p>5️⃣ The Biologist&rsquo;s Guide to Computing<br />Bridges the gap between biological problems and computational thinking, making it easier for life scientists to approach programming and data analysis.</p><p>6️⃣ Bioinformatics Data Skills<br />A must-read to sharpen your bioinformatics toolkit &mdash; from command-line skills to reproducible research workflows. Ideal once you&rsquo;ve covered the basics.</p><p>7️⃣ Bioinformatics Workbook<br />A practical tutorial series to help scientists design bioinformatics projects, analyze data, and understand best practices.</p><p>8️⃣ Modern Statistics for Modern Biology<br />An essential guide to modern statistical methods applied to biology, blending theory with hands-on examples in R.</p><p>9️⃣ Algorithms on Strings, Trees, and Sequences by Dan Gusfield<br />A classic reference for anyone wanting to understand the algorithms behind sequence alignment, genome assembly, and biological data structures.</p><p></p>]]></description>
	<dc:creator>Neel</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/6104/incob-2014</guid>
  <pubDate>Thu, 07 Nov 2013 17:53:36 -0600</pubDate>
  <link></link>
  <title><![CDATA[InCoB 2014]]></title>
  <description><![CDATA[
<p>The 13th International Conference on Bioinformatics (InCoB 2014) will be held in Novotel Sydney Brighton Beach, Sydney, New South Wales, Australia. This year, the InCoB will be held earlier from 31st July to 2nd August 2014 to run back-to-back with the International Biophysics Congress 2014 at the Brisbane Convention and Exhibition Centre, Queensland (3-7 Aug).</p>

<p>More at http://incob2014.org/</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/fun/view/45093/computational-but-a-biologist</guid>
	<pubDate>Thu, 09 Apr 2026 00:44:46 -0500</pubDate>
	<link>https://bioinformaticsonline.com/fun/view/45093/computational-but-a-biologist</link>
	<title><![CDATA[Computational, but a Biologist !]]></title>
	<description><![CDATA[<p>There was a time when doing biology<br />meant working only with your hands&mdash;<br />and that alone was seen<br />as &ldquo;real science.&rdquo;</p><p>People using computers were often seen<br />as helpers, not leaders&mdash;<br />useful, but not essential.</p><p>Sometimes, the criticism was direct.<br />Sometimes subtle.<br />But the message was the same&mdash;<br />this work doesn&rsquo;t really count.</p><p>Then biology changed.<br />The questions became bigger,<br />and experiments alone<br />were no longer enough.</p><p>Organizing knowledge by hand worked once.<br />Now it needs computers&mdash;<br />to handle scale, speed, and complexity.</p><p>Some patterns are simply invisible<br />if you look at one sample.<br />You need many&mdash;<br />and the right tools to understand them.</p><p>So we started building maps&mdash;<br />of genomes, cells, and systems.<br />Not perfect,<br />but extremely useful.</p><p>Ideas also had to become clearer.<br />It&rsquo;s no longer enough to say something sounds right&mdash;<br />you have to measure it.</p><p>The divide between &ldquo;types&rdquo; of biologists<br />never really made sense.<br />We are solving the same problems&mdash;<br />just in different ways.</p><p>Progress didn&rsquo;t wait for agreement.<br />It moved forward with data,<br />with code,<br />and with careful analysis.</p><p>What matters now is simple:<br />&bull; Biology depends on computation<br />&bull; Coding is an important skill<br />&bull; Statistics helps us think clearly<br />&bull; And the people building these tools<br />are shaping the future of science</p>]]></description>
	<dc:creator>LEGE</dc:creator>
</item>

</channel>
</rss>