분류 전체보기(79)
-
insigntful lesson
Transferable Skills and Adaptability in a Changing Business Landscape- The importance of developing transferable skills that can be applied across different jobs and industries.- The dynamic nature of businesses and the need to adapt to changing circumstances.- The book 'Who Moved My Cheese?' as an example of embracing change and adaptability.The Cheese and the Mouse- A mouse happily goes to get..
2024.11.25 -
VCF file analysis method using Pandas
1. Data type conversion and filteringTransform the data types of columns required for data analysis.For example, POS can be converted to integer and QUAL to float.# Data type conversiondf['POS'] = df['POS'].astype(int)df['QUAL'] = df['QUAL'].astype(float)df['AF'] = df['AF'].apply(lambda x: float(x.split(',')[0]))# Filtering only high-quality variationshigh_quality_variants = df[df['QUAL'] >= 30]..
2024.11.24 -
Analyzing single cell RNA-seq by Seurat
Suerat is R packdage for analyzing single cell RNA seq data. It is said to be the most used tool to analyze single cell data. At this point, in order to do the analysis, you have to create something called a Seurat Object. Seurat Object is an object that is organized to make it easier to analyze single cell data.
2024.11.24 -
certificates
statisics and RLinear models and Matrix Algebra
2024.11.24 -
open innovation conference
→ The common point they emphasized is that science comes first.In the rapidly evolving biotechnology industry, open collaboration has become a cornerstone for innovation and advancement. Companies, research institutions, and startups are increasingly engaging in collaborative efforts to drive breakthroughs that would be challenging to achieve independently. While such partnerships involve variou..
2024.11.23 -
effective talk tip
How to Deliver an Effective TalkStarting the Talk1. Avoid Humor at the Start: Skip jokes to keep the beginning focused and professional.2. Set Expectations: Clearly outline what the audience will gain from your talk.3. Reinforce Key Points: Repeat your main ideas to ensure everyone fully understands them.4. Define Your Concept: Use a “fence” around your idea to distinguish it from others.5. Summ..
2024.11.02