Web Page
Bioinformatics
01/15/2025 - For inquires send email to staff@hpc.nih.gov Next edition of the NIH HPC monthly Zoom-In Consults! All Biowulf users, and all those interested in using the systems, are invited to stop by Read More...
Web Page
Bioinformatics
05/15/2024 - For inquires send email to staff@hpc.nih.gov Next edition of the NIH HPC monthly Zoom-In Consults! All Biowulf users, and all those interested in using the systems, are invited to stop by Read More...
Web Page
Bioinformatics
Lesson 15 Practice Objectives Previously, we performed QC on the Golden Snidget RNA sequencing data, aligned the sequencing reads to its genome, and obtained expression counts. We can now finally perform differential expression analysis, to find Read More...
Web Page
Bioinformatics
Lesson 15: Finding differentially expressed genes Before getting started, remember to be signed on to the DNAnexus GOLD environment. Lesson 14 review In the previous lesson, we learned to visualize RNA sequencing alignment results in the Integrative Read More...
Web Page
Bioinformatics
Before getting started, remember to be signed on to the DNAnexus GOLD environment.
Web Page
Bioinformatics
Introduction to classification base RNA sequencing Review of RNA sequencing
Frederick, MD
Collaborative
The Biopharmaceutical Development Program (BDP) provides resources for the development of investigational biological agents. The BDP supports feasibility through development and Phase I/II cGMP manufacturing plus regulatory documentation.The BDP was established in 1993. We Read More...
Web Page
Back Services: Biophysics Facility offers MDS as an open-access instrument. First-time users must complete a short training session before gaining access to the instrument reservation calendar. Training includes the KD determination of a standard molecular Read More...
Web Page
Bioinformatics
07/15/2025 - Thi i the final le on in the cour e Introductory R for Novice : Introduction to Data Wrangling. Thi le on will how attendee how to join multiple data frame and tran form and Read More...
Web Page
Bioinformatics
04/16/2025 - Updated Location: ATRF, Frederick MD, Main Auditorium What to bring: Laptop capable of connecting to internet via NIH wifi For questions or to register, please contact Amy Stonelake ( amy.stonelake@nih.gov ) Read More...
Web Page
Bioinformatics
04/15/2025 - What to bring: Laptop capable of connecting to internet via NIH wifi Are you looking to expand the reach of your sequencing to enable what long read technologies can provide?& Read More...
Web Page
Bioinformatics
04/15/2025 - What to bring: Laptop capable of connecting to internet via NIH wifi Are you looking to expand the reach of your sequencing to enable what long read technologies can provide?& Read More...
Web Page
Bioinformatics
01/15/2025 - Science and Technology Group: Work in Progress Seminar Series 2025
Web Page
Bioinformatics
11/15/2024 - Hands-on workshop using R and Seurat to analyze an example spatial transcriptomics dataset
Web Page
Bioinformatics
The following sources inspired this content: https://www.sc-best-practices.org https://hbctraining.github.io/scRNA-seq_online/ https://bioconductor.org/books/3.15/OSCA.basic/
Web Page
Bioinformatics
The following sources inspired this content: https://www.sc-best-practices.org https://hbctraining.github.io/scRNA-seq_online/ https://bioconductor.org/books/3.15/OSCA.basic/ This is only a small subset of tools available to single cell RNASeq. Read More...
Web Page
Bioinformatics
02/15/2024 - This lesson will be divided into two parts. Part 1 will introduce Bioconductor, an R package repository for the analysis of biological data. Part 2 will introduce RMarkdown and Quarto for report generation with R.
Web Page
Bioinformatics
select() requires the data frame followed by the columns that we want to select or deselect as arguments. #select the gene / transcript, logFC, and FDR corrected p-value #first argument is the df followed by columns Read More...
Web Page
Bioinformatics
Love Data Week 2024 is quickly approaching! What is Love Data Week? Love Data Week is an international week of celebrating all things data related, with an emphasis on data management, sharing, and security. Read More...
Web Page
Bioinformatics
#rename using the syntax new_name = old_name ex1 ## 1 TSPAN6 -0.390 0.00283 ## 2 DPM1 0.198 0.0770 ## 3 SCYL3 0.0292 0.844 ## 4 C1orf112 -0.124 0.682 ## 5 CFH 0.417 0.00376 ## 6 FUCA2 -0.250 0.0186 ## 7 GCLC -0.0581 0.794 ## 8 NFYA -0.509 0.00126 ## 9 STPG1 -0.136 0.478 ## 10 NIPAL3 -0.0500 0.695 ## # ℹ 15,916 more rows Note If you want to retain Read More...
Web Page
Bioinformatics
We can also include helper functions such as starts_with() and ends_with() select(dexp, transcript, starts_with("log"), FDR) ## # A tibble: 15,926 × 4 ## transcript logFC logCPM FDR ## ## 1 TSPAN6 -0.390 5.06 0.00283 ## 2 DPM1 0.198 4.61 0.0770 ## 3 SCYL3 0.0292 3.48 0.844 ## 4 C1orf112 -0.124 1.47 0.682 ## 5 Read More...
Web Page
Bioinformatics
Notice that we can select a range of columns using the : . We could also deselect a range of columns or deselect a range of columns while adding a column back. ex3 ## 1 ENSG00000000003 0.000312 0.00283 -0.390 ## 2 ENSG00000000419 0.0281 0.0770 0.198 ## 3 ENSG00000000457 0.763 0.844 0.0292 ## 4 Read More...
Web Page
Bioinformatics
To subset by column, we use the function select() . We can include and exclude columns, reorder columns, and rename columns using select() . Select a few columns from our differential expression results ( dexp ). We can select Read More...
Web Page
Bioinformatics
There are many other ways to select multiple columns. You may commonly be interested in selecting all numeric columns or all factors. The syntax below can be used for this purpose. select(dexp, where(is. Read More...
Web Page
Bioinformatics
mutate() adds new variables and preserves existing ones; transmute() adds new variables and drops existing ones. New variables overwrite existing variables of the same name. --- dplyr.tidyverse.org Let's create a column in Read More...
Web Page
Bioinformatics
There are many steps that can be taken following subsetting (i.e., filtering by rows and columns); one of which is reordering rows. In the tidyverse, reordering rows is largely done by arrange() . Arrange will Read More...
Web Page
Bioinformatics
For readability, let's move the transcript column to the front. #you can reorder columns and call a range of columns using select(). ex3 ## 1 TSPAN6 hg38 TRUE -0.390 5.06 32.8 0.000312 0.00283 untrt ## 2 DPM1 hg38 TRUE 0.198 4.61 6.90 0.0281 0.0770 untrt ## 3 SCYL3 hg38 Read More...
Web Page
Bioinformatics
We can access a column of our data frame using [] , [[]] , or using the $ . We can use colnames() and rownames() to access the column names and row names of a data frame. For example: df[[" Read More...
Web Page
Bioinformatics
09/08/2023 - Hybrid Seminar Friday, September 8, 2023 • 9:00-10:00 a.m. Building 549 Auditorium (In-person attendance encouraged) Speaker: Brian Kelsall, M.D. Senior Investigator, Mucosal Immunobiology Section Laboratory of Molecular Immunology National Institutes of Allergy Read More...
Web Page
Bioinformatics
How many annotation clusters were generated using default parameters? {{Sdet}} Solution{{Esum}} 15 clusters were generated {{Edet}} Look thoroughly through the annotations, are any expected annotations and unexpected ones given that this is a tumor versus Read More...
Web Page
Back Services: Biophysics Facility offers DLS as an open-access instrument. First-time users must complete a short training session before gaining access to the instrument reservation calendar. Training includes DLS analysis of small- and large-molecular size Read More...
Web Page
Bioinformatics
09/29/2025 - Plea e u e thi link to acce overview, regi tration, and other information: http ://event .cancer.gov/nci/od -data-jamboree Childhood cancer i a rare di ea e with ~15,000 ca e diagno ed Read More...
Web Page
Bioinformatics
04/15/2025 - The Demystifying Medicine Series, jointly sponsored by FAES and NIH, includes presentations on pathology, diagnosis, and therapy in the context of major disease problems and current research. Primarily directed toward PhD students, clinicians and Read More...
Web Page
Bioinformatics
01/15/2025 - This one-hour online training will cover the fundamentals, applications, and ethical considerations of Artificial Intelligence (AI). Attendees will explore key topics such as machine learning, deep learning, data handling, and real-world AI applications across Read More...
Web Page
Bioinformatics
01/15/2025 - The goal is to support broad data sharing and reuse that benefits the entire cancer community. This event will cover best practices for accessing controlled data and highlight updates on the new NIH security Read More...
Web Page
Bioinformatics
01/15/2025 - This session of the BTEP Coding Club will demonstrate how to use the R package “survival” to conduct a survival analysis of an example dataset. Senior Programmer and Analyst, Duncan Donohue, PhD, will cover Read More...
Web Page
Bioinformatics
11/15/2024 - In partnership with the NIH Clinical Center's Biostatistics and Clinical Epidemiology Service (BCES), the NIH Library is offering classes geared to cover general concepts behind statistics and epidemiology. This four-part lecture series will Read More...
Web Page
Bioinformatics
11/06/2024 - Join Our Training on Spatial Omics Data Analysis with MAWA (Multiplex Analysis Web Apps). Want to learn how to process and analyze your spatial proteomics/transcriptomics data? Join us for four virtual hour-long sessions Read More...
Web Page
Bioinformatics
10/29/2024 - Join Our Training on Spatial Omics Data Analysis with MAWA (Multiplex Analysis Web Apps). Want to learn how to process and analyze your spatial proteomics/transcriptomics data? Join us for four virtual hour-long sessions Read More...
Web Page
Bioinformatics
10/22/2024 - Join Our Training on Spatial Omics Data Analysis with MAWA (Multiplex Analysis Web Apps). Want to learn how to process and analyze your spatial proteomics/transcriptomics data? Join us for four virtual hour-long sessions Read More...
Web Page
Bioinformatics
10/16/2024 - The CRDC will celebrate its 10th anniversary with this one-and-a-half-day event highlighting its accomplishments and looking ahead to exciting initiatives. We are planning many informative sessions and report-outs on new work, including our AI Read More...
Web Page
Bioinformatics
10/15/2024 - Join Our Training on Spatial Omics Data Analysis with MAWA (Multiplex Analysis Web Apps). Want to learn how to process and analyze your spatial proteomics/transcriptomics data? Join us for four virtual hour-long sessions Read More...
Web Page
Bioinformatics
10/15/2024 - This one-hour online training will cover techniques on locating biomedical research articles, patents, NIH-funded research projects, genetic information, and print and electronic books related to animal models and model organisms. This training will also Read More...
Web Page
Bioinformatics
10/15/2024 - On October 15th-16th, 2024, the NCI Office of Data Sharing (ODS) is hosting the Annual Data Sharing Symposium titled Driving Cancer Advances through Impactful Research inside the Clinical Read More...
Web Page
Bioinformatics
09/23/2024 - Come to the Fair! In the morning session, several different groups will speak about their training and education programs. The afternoon session will be devoted to learning about research using AI across Read More...
Web Page
Bioinformatics
Dataquest licenses are no longer available. If you currently have a Dataquest license, you can continue using it until Sept 15, 2025. The Coursera platform contains thousands of courses developed by experts all over the world and Read More...
Web Page
Bioinformatics
08/15/2024 - Qiagen’s CLC Genomics Workbench is a point-and-click software for analyzing multi-omics sequencing data including variant analysis, RNA sequencing, and ChIP sequencing. This class will demonstrate variant analysis using this software. Participants will be Read More...
Web Page
Bioinformatics
Some tools have been described in the previous session (see here ). Today, we will be focusing on the SingleR tool, which also requires the celldex package . In short, SingleR operates by comparing your current dataset Read More...
Web Page
Bioinformatics
05/15/2024 - Generalist repositories offer NIH researchers a flexible, trusted resource to share data for which there is no appropriate discipline specific repository as well as to share many other research outputs valuable for reproducibility and Read More...
Web Page
Bioinformatics
05/15/2024 - To register to attend, you must log in to your SITC Cancer Immunotherapy CONNECT account. Don’t have an account? Create a free one . Join Dr. Karchin of the Johns Read More...
Web Page
Bioinformatics
05/15/2024 - In this one-hour webinar, you'll get a demonstration of DNASTAR Lasergene Software. DNASTAR offers software solutions for molecular biology, protein analysis, and genomics. This presentation will focus on an overview of the applications Read More...
Web Page
Bioinformatics
02/15/2024 - This one-hour introductory class provides researchers with an overview of online resources for locating research datasets, data repositories, and data publications for data sharing and re-use. Participants will learn search strategies for locating datasets Read More...
Web Page
Bioinformatics
Another important data structure in R is the data matrix. Data frames and data matrices are similar in that both are tabular in nature and are defined by dimensions (i.e., rows (m) and columns ( Read More...
Web Page
Bioinformatics
Try googling your problem or using some other search engine. rseek is an R specific search engine that searches several R related sites. If using google directly, make sure you use R to tag your Read More...
Web Page
Bioinformatics
To explore tidyverse functionality, let's read in some data and take a look. #let's use our differential expression results dexp "ENSG00000000003", "ENSG00000000419", "ENSG00000000457", "E… $ albut untrt, Read More...
Web Page
Bioinformatics
We can select all columns, leaving out ones that do not interest us using a - sign. This is helpful if the columns to keep far outweigh those to exclude. We can similarly use the ! Read More...
Web Page
Bioinformatics
For the help sessions, we will work on processing sequences generated in Zhang Z, Feng Q, Li M, Li Z, Xu Q, Pan X, Chen W. Age-Related Cancer-Associated Microbiota Potentially Promotes Oral Squamous Cell Cancer Read More...
Web Page
Bioinformatics
For this lesson, we will use sample metadata and differential expression results from the airway RNA-Seq project. Let's begin by importing the data. #sample information smeta ## 1 GSM1275862 N61311 untrt untrt SRR10395… 126 SRX384345 SRS50… SAMN0242… ## 2 Read More...
Web Page
Bioinformatics
Let's grab some data. library ( tidyverse ) acount_smeta % dplyr :: rename ( "Feature" = "...1" ) acount #differential expression results dexp % filter ( ! Feature %in% dexp $ feature ) ## # A tibble: 48,176 × 9 ## Feature SRR1039508 SRR1039509 SRR1039512 SRR1039513 SRR1039516 SRR1039517 ## ## 1 Read More...
Web Page
Bioinformatics
Help Session Lesson 6 Let's grab some data. library ( tidyverse ) acount_smeta % dplyr :: rename ( "Feature" = "...1" ) acount #differential expression results dexp % filter ( ! Feature %in% dexp $ feature ) ## # A tibble: 48,176 × 9 ## Feature SRR1039508 SRR1039509 SRR1039512 Read More...
Web Page
Bioinformatics
Load in a tab delimited file (file_path= "./data/WebexSession_report.txt") using read_delim() . You will need to troubleshoot the error message and modify the function arguments as needed. {{Sdet}} Solution } library ( Read More...
Web Page
Bioinformatics
Which of the following will throw an error and why? 4 _ chr :1:2: unexpected input ## 1: 4_ ## ^ . 4 chr :1:3: unexpected symbol ## 1: .4chr ## ^ {{Edet}} Create the following objects; give each object an appropriate name (your best guess at what name to Read More...
Web Page
Bioinformatics
This is our first coding help session. We have designed some practice problems to get you acquainted with using R before beginning to wrangle in our next lesson. Practice problems Which of the following will Read More...
Web Page
Bioinformatics
Let's load in some data to work with. In this lesson, we will continue to use sample metadata, raw count data, and differential expression results from the airway RNA-Seq project. Load the data: #sample Read More...
Web Page
Bioinformatics
A rarefaction curve plot[s] the number of counts sampled (rarefaction depth) vs. the expected value of species diversity. --- Weiss et al. 2017 Let's take a look at an alpha rarefaction curve . Demo plot Read More...
Web Page
Bioinformatics
11/15/2023 - For inquires send email to staff@hpc.nih.gov Next edition of the NIH HPC monthly Zoom-In Consults! All Biowulf users, and all those interested in using the systems, are invited to stop by Read More...
Web Page
Bioinformatics
11/15/2023 - This session introduces two versions of the R/ Bioconductor package OmicCircos to generate high-quality circular plots for visualizing multi-dimensional omics data: coding in the R environment for programmers; point-and-click OmicCircos R Shiny app on Read More...
Web Page
Bioinformatics
11/15/2023 - This class provides an overview of options for customizing a ggplot graph. This class will focus on methods for creating small multiples, options for customizing a graph, and how to apply ggplot themes.& Read More...
Web Page
Bioinformatics
09/21/2023 - Picture this… You have large amounts of siloed medical imaging data, but you don’t have the time or budget to manually prepare the images and datasets for annotation and analysis. Don’t you Read More...
Web Page
Bioinformatics
09/15/2023 - Researchers and academic staff who support them, representatives from data repositories, and NIH staff interested in how metadata can make NIH-funded research more findable are invited to the GREI Metadata and Search subcommittee& Read More...
Web Page
Bioinformatics
Lessons focus on RNA-Seq analysis including experimental design and best practices, quality control, trimming, alignment based methods, classification based methods, feature counts, and differential expression analysis. Lesson 8: Introduction to RNA-Seq ( Recording ) Lesson 9: Introduction to the Read More...
Web Page
Bioinformatics
Recall that the Golden Snidget data resides in ~/biostar_class/snidget folder. Can you change into the folder and find where the sequencing reads are (ie. in which folder they are located)? {{Sdet}} Solution{{Esum}} Read More...
Web Page
Bioinformatics
Lesson 10 Practice Objectives In this lesson, we introduced the structure of the FASTQ file and learned to assess quality of raw sequencing data using FASTQC. Here, we will practice what we learned using the Golden Read More...
Web Page
Bioinformatics
In this portion of the class, it is very important that you have IGV already opened on your computer. See Figure 1 and Figure 2 on how to load the relevant alignment outputs for HBR_1 and UHR_1 Read More...
Web Page
Bioinformatics
For visualizing the HBR and UHR alignment results, we will use the built in Human hg38 genome. To do this, we will just goto the genome selection box and select hg38 (Figure 2). In Figure 3, we Read More...
Web Page
Bioinformatics
While we can always download reference genomes and reference transcriptomes from repositories such as NCBI or Ensembl, we will use gffread to create one from the chromosome 22 genome (22.fa) that we have used when analyzing Read More...
Web Page
CREx Monthly Newsletter Learn about the NIH Collaborative Research Exchange (CREx), Core Facilities, Webinars, & More NIH Intramural Core Resources NHGRI Flow Cytometry Core The Core performs high quality single cell analysis through the Read More...
Frederick, MD
Core Facility
The research conducted within the Synthetic Biologics Core (SBC) Facility has a dual role: Generate chemical biology tools and drug candidates for molecular targets identified by NCI research groups, Develop novel effective methods and tools Read More...
Web Page
CREx Monthly Newsletter Learn about the NIH Collaborative Research Exchange (CREx), Core Facilities, Webinars, & More New Resources on CREx Trans-NIH Metabolomics Core (TNMC) The TNMC is a shared research resource that provides targeted Read More...
Web Page
CREx Monthly Newsletter Learn about the NIH Collaborative Research Exchange (CREx), Core Facilities, Webinars, & More NIH Intramural CryoEM (NICE) Consortium NICE provides NCI, NIAID, NIEHS, NICHD, NIDCR, NEI, and NIA investigators with Read More...
Web Page
CREx Monthly Newsletter Learn about the NIH Collaborative Research Exchange (CREx), Core Facilities, Webinars, & More NIH Extramural Common Fund Resources Metabolomics Workbench Developed by the NIH Metabolomics Common Fund's National Metabolomics Data Repository ( Read More...
Web Page
Home Biophysics Core Technologies Biophysics Core Services The Biophysics Core The Biophysics Core Facility (BCF) was established in 2008 in the NHLBI as an advanced service laboratory providing expertise, training, consultations, and instrument access for intramural Read More...
Frederick, Maryland
Core Facility
CLIA-Certified Technologies Offered: Fragment Analysis for Micro-satellite Instability Detection, Pharmacoscan Array for Pharmacogenomics, Mutation Detection for PCR and Sanger Sequencing, DNA extraction from whole blood, saliva, FFPE tissues, buccal swabs, nails, hair, PBMCs, buffy coats, Read More...
Frederick, MD
Core Facility
Clinical Support Laboratory – Flow Cytometry Section is a laboratory specializing in providing immunophenotyping support of NCI intramural clinical trials, though assessments may also be performed using cells from Non-human primates and other species. The CSL Read More...
Web Page
CREx Monthly Newsletter Learn about the NIH Collaborative Research Exchange (CREx), Core Facilities, Webinars, & More Technology Event Biophysical Methods for Protein Interactions Monday, May 15 – Friday, May 19, 2023 This workshop will review the strategies of Read More...
Bethesda, MD
Trans NIH Facility
The NIH Clinical Center Pharmacy Department provides pharmaceutical care to inpatients and outpatients on NIH intramural research protocols at the NIH Clinical Center. The Clinical Center facility encompasses 200 inpatient beds, 93 day-hospital stations, and 15 clinics. Clinical Read More...
Web Page
Back Services: Biophysics Facility offers ITC calorimeters as open-access instruments. First-time users must complete a short training session before gaining access to the instrument reservation calendar. Training includes performing a test experiment and Read More...
Web Page
September 8, 2022 crex.nih.gov CREx Monthly Newsletter Learn about the NIH Collaborative Research Exchange (CREx), Core Facilities, Webinars, & More Science & Technology Seminars and Training Events Upcoming Seminars and Educational Opportunities The following Read More...
Web Page
CREx News & Updates June 2021 Learn about the NIH Collaborative Research Exchange (CREx), Core Facilities, Webinars, & More NIH Collaborative Research Exchange (CREx) News Site Spotlight FACILITY HIGHLIGHTS Visit here to learn about services from Read More...
Bethesda, MD
Core Facility
Trans NIH Facility
The PET Department, CC, functions as a core facility that supports basic, translational, and clinical research using PET. It is a vertically integrated facility, with resources to produce positron-emitting radionuclides, manufacture PET radiopharmaceuticals in a Read More...
Web Page
CREx Monthly Newsletter Learn about the NIH Collaborative Research Exchange (CREx), Core Facilities, Webinars, & More New NIH Resource Resources Derive Greater Insights and Accelerate your Research Using Bioinformatic Tools! CREx is an NIH Read More...
Web Page
Back Services: Biophysics Facility offers ZetaView as an open-access instrument. First-time users must complete a short training session before using it for the first time. Training includes instrument calibration and size analysis of a standard Read More...
Web Page
CREx Monthly Newsletter Learn about the NIH Collaborative Research Exchange (CREx), Core Facilities, Webinars, & More New NIH Resource Spotlight The NIH Lab Managers Working Group have developed a new NIH-wide database of cold Read More...
Frederick, MD
Collaborative
In order to meet increasing demands from both NIH intramural and extramural communities for access to a small angle X-ray scattering (SAXS) resource, the Center for Cancer Research (CCR) under the leadership of Drs. Jeffrey Read More...
Web Page
CREx News & Updates July 2022 Learn about the NIH Collaborative Research Exchange (CREx), Core Facilities, Webinars, & More Click below to learn how easy it is to navigate the CREx platform. These short videos will Read More...
Web Page
CREx News & Updates November 2021 Learn about the NIH Collaborative Research Exchange (CREx), Core Facilities, Webinars, & More Site Spotlight FACILITY HIGLIGHTS Learn more about services from the NINDS Quantitative Magnetic Resonance Imaging Core. NINDS Read More...
Bethesda, Maryland
Core Facility
Repositories
The AgingResearchBiobank was officially launched in January 2019 with a mission to provide a state-of-the-art inventory system for the storage, maintenance, and distribution of de-identified biospecimens and associated phenotypic, clinical, and imaging data from numerous NIA-funded Read More...
Web Page
Back Services: Biophysics Facility offers MST as an open-access instrument. First-time users must complete a short training session before gaining access to the instrument reservation calendar. Training includes the KD determination of a Read More...
Rockville, MD
Trans NIH Facility
NISC’s role within NHGRI, and more broadly across NIH, aims to advance genome sequencing and its many applications, with a goal not simply to produce sequence data, but to produce the infrastructure required to Read More...
Web Page
[tabby title="Home"] About NICE-NIH Intramural CryoEM Consortium NIH Intramural CryoEM Consortium (NICE) serves intramural investigators in all NIH IC’s. NICE provides access to state-of-the-art Titan Krios cryo-electron microscopes for atomic-resolution structure determination of Read More...
Web Page
Confocal
2024 Senatorov IS, Bowman J, Jansson KJ, Alilin AN, Capaldo BJ, Lake R, Riba M, Abbey YC, Mcknight C, Zhang X, Raj S, Beshiri ML, Shinn P, Ngyuyen H, Thomas CJ, Corey E, Kelly K. Castrate Read More...
Web Page
Confocal
Our Team Tatiana S. Karpova Ph.D.Core Headkarpovat@nih.govBuilding 41, Room C615240-760-6637 David A. Ball Ph.D.Core Biologistballa@nih.govBuilding 41, Room B114D240-760-6577 Mohamadreza Fazel, Ph.D.Core Biologistmohamadreza. Read More...
Web Page
Confocal
2024 L. Balagopalan, T. Moreno, H. Qin, B. C. Angeles, T. Kondo, J. Yi, K. M. McIntire, N. Alvinez, S. Pallikkuth, M. E. Lee, H. Yamane, A. D. Tran, P. Youkharibache, R. E. Cachau, N. Taylor, Read More...
Web Page
Confocal
Zeiss LSM 880 NLO Laser Scanning Microscope Laser scanning microscope: 355nm UV laser 405nm, 594nm, 561nm and 633nm diode lasers Argon laser (458nm, 488nm and 514nm lines) Coherent Chameleon Vision II tunable (680nm – 1080nm) IR multiphoton Read More...
Web Page
Bioinformatics
Listed below are the video recordings of past BTEP events (classes, seminars, workshops). Videos are hosted on various servers and may play slightly differently. Some videos may be downloaded for local viewing. Recorded Videos of Read More...
Web Page
Bioinformatics
Now, that we have clusters, we can use differential expression analysis to uncover markers that define our clusters. These markers can be used to assign cell types to our clusters. First, because we are working Read More...
Web Page
Bioinformatics
Clustering is used to group cells by similar transcriptomic profiles. Seurat uses a graph based clustering method. You can read more about it here . The first step is to compute the nearest neighbors of each Read More...
Web Page
Bioinformatics
Learning Objectives This tutorial was designed to demonstrate common secondary analysis steps in a scRNA-Seq workflow. We will start with a merged Seurat Object with multiple data layers representing multiple samples. Throughout this tutorial we Read More...
Web Page
Bioinformatics
1. Introduction and Learning Objectives This tutorial has been designed to demonstrate common secondary analysis steps in a scRNA-Seq workflow. We will start with a merged Seurat Object with multiple data layers representing multiple samples that Read More...
Web Page
Bioinformatics
04/01/2024 - Embark on a journey of visionary insights! Join us for the launch of the NEI Informatics & Data-Driven Insights: Seminars & Dialogue Opportunities for Vision Health series, hosted by the National Eye Read More...
Web Page
Bioinformatics
Now let's filter the rows based on a condition. Let's look at only the treated samples in scaled_counts using the function filter() . filter() requires the df as the first argument followed by Read More...
Web Page
Bioinformatics
This lesson will introduce data wrangling with R. Attendees will learn to filter data using base R and tidyverse (dplyr) functionality. Learning Objectives Understand the concept of tidy data. Become familiar with the tidyverse packages. Read More...
Web Page
Bioinformatics
Learning Objectives Learn about data structures including factors, lists, data frames, and matrices. Load, explore, and access data in a tabular format (data frames) Learn to write out (export) data from the R environment Data Read More...
Web Page
Bioinformatics
Learning Objectives To understand: 1. the difference between R and RStudioIDE. 2. how to work within the RStudio environment including: creating an Rproject and Rscript navigating between directories using functions obtaining help how R can enhance data Read More...
Web Page
Bioinformatics
Introduction to dplyr and the %>% Objectives Today we will begin to wrangle data using the tidyverse package, dplyr . To this end, you will learn: how to filter data frames using dplyr how to employ Read More...
Web Page
Bioinformatics
This course was designed to teach the basics of targeted amplicon data processing and analysis using the QIIME2 platform. Attendees will learn how to format data and metadata, import data, demultiplex sequences, trim sequences, denoise Read More...
Web Page
Bioinformatics
Course Overview This course was designed to teach the basics of targeted amplicon data processing and analysis using the QIIME2 platform. Attendees will learn how to format data and metadata, import data, demultiplex sequences, trim Read More...
Web Page
Bioinformatics
There are two additional functions from Tidyr that are very useful for organizing data: unite() and separate() . These are used to split or combine columns. For example, you may have noticed that our feature column Read More...
Web Page
Bioinformatics
Why did we focus so heavily on the tidyverse if it can't be used to manipulate Bioconductor objects? Well, for one, regardless of whether you are a user of Bioconductor packages, you will often Read More...
Web Page
Bioinformatics
Help Session Lesson 3 Loading data Import data from the sheet "iris_data_long" from the excel workbook (file_path = "./data/iris_data.xlsx"). Make sure the column names are unique and Read More...
Web Page
Bioinformatics
Practice Lesson 2 For the help sessions, we will work on processing sequences generated in Zhang Z, Feng Q, Li M, Li Z, Xu Q, Pan X, Chen W. Age-Related Cancer-Associated Microbiota Potentially Promotes Oral Squamous Read More...
Web Page
Bioinformatics
As you can see from the image, there are several accessor functions to access the data from the object: assays() - access matrix-like experimental data (e.g., count data). Rows are genomic features (e.g., Read More...
Web Page
Bioinformatics
dplyr : joining, tranforming, and summarizing data frames Objectives Today we will continue to wrangle data using the tidyverse package, dplyr . We will learn: how to join data frames using dplyr how to transform and create Read More...
Web Page
Bioinformatics
R Crash Course: A few things to know before diving into wrangling Learning the Basics Objectives 1. Learn about R objects 3. Learn how to recognize and use R functions 4. Learn about data types and accessors Console Read More...
Web Page
Bioinformatics
Objectives To explore Bioconductor, a repository for R packages related to biological data analysis. To better understand S4 objects as they relate to the Bioconductor core infrastructure. To learn more about a popular Bioconductor S4 Read More...
Web Page
Bioinformatics
Lesson 5: Microbial diversity, alpha rarefaction, alpha diversity Learning Objectives Understand the difference between alpha and beta diversity Introduce several alpha diversity metrics Understand what rarefaction is and why it is important Introduce the debate regarding Read More...
Web Page
Bioinformatics
Data import and reshape Objectives 1. Learn to import multiple data types 2. Data reshape with tidyr : pivot_longer() , pivot_wider() , separate() , and unite() Installing and loading packages So far we have only worked with objects that Read More...
Web Page
Bioinformatics
10/13/2023 - Zhiyong Lu, Ph.D. will present AI in Medicine: Improving Access to Literature Data for Knowledge Discovery at the monthly Data Sharing and Reuse Seminar. The explosion of biomedical big data and Read More...
Web Page
Bioinformatics
We previously stored FASTQC results for the HBR and UHR raw sequencing data in the ~/biostar_class/hbr_uhr/QC directory (recall that ~ denotes home directory). So before getting started, change into this folder. cd ~/ Read More...
Web Page
Bioinformatics
After the merged expression counts table has been created, we can proceed with differential expression analysis. Let's use DESeq2 again for this. But first, let's move counts.csv (the merged salmon expression table) Read More...