leonxs
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee

      This note has no invitees

    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Note Insights New
    • Engagement control
    • Make a copy
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Note Insights Versions and GitHub Sync Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Engagement control Make a copy Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       Owned this note    Owned this note      
    Published Linked with GitHub
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    # GUTMICRO day 2 ## 1. Using the provided snps_depth_small.txt.bz2 files, calculate what fraction of the ref genome is not present in a typical sample. How does this vary across species / species? Code: ``` #strategy: count up 0s, count up > 0s, divide library(data.table) library(tidyverse) bdata <- fread("snps_depth_small_bacteroides.txt", data.table=F, stringsAsFactors = F) adata <- fread("snps_depth_small_alistapes.txt", data.table=F, stringsAsFactors = F) #strategy: count up 0s, count up > 0s, divide lapply(bdata, function(x){length(which(x==0))/length(x)}) lapply(adata, function(x){length(which(x==0))/length(x)}) #for B.vulgatus, fraction of genome not present ranges from 13% to 40% between samples. #for A. putredinis, range is similar. #alternate strategy: average or sum across rows, then count 0s bdata.sum <- rowSums(bdata[,2:39]) #sum rows, write to value bdata$total <- bdata.sum #add sum to dta bdata.final <- bdata[c("site_id","total")] #new dataframe, just id and total bdata.final[order(bdata.final$total),] #reorder, ascending lapply(bdata.final, function(x){length(which(x==0))/length(x)}) adata.sum <- rowSums(adata[,2:39]) adata$total <- adata.sum adata.final <- adata[c("site_id","total")] lapply(adata.final, function(x){length(which(x==0))/length(x)}) #here the fraction of genome not present is 6% for B.vulg and 3% for A.putre across samples ``` ## 2. Are some genes present in almost all samples? Code: ## 3. Can you identify the “typical” coverage for each sample? By eye? By some automatic method (you can see what we did in the methods section of our PLoS Bio paper). > Based on these raw alignments, MIDAS reports the total read coverage D for each site in the reference genome for each given sample [18]. We used this distribution of coverage across the genome to obtain a measure of the “typical” coverage, D, defined as the median of all protein coding sites with nonzero coverage. All samples with D < 5 were excluded from further analyses. Additional coverage requirements for QP samples are imposed below. Code: ## 4. What would you do to filter out sites not “present” in a given sample? (you can see what we did in the methods section of our paper). What tradeoffs are you thinking about re: the criteria you chose? Code: ## 5. Bonus: since individual sites are noisy, one could maybe do better by coarse-graining the coverage estimation / filter step at the gene level. Can you implement a good way to estimate the “typical” coverage of a gene and compare it to the whole genome? Code: ## Veronika's code: #### Data analysis and comparison ``` rm(list=ls(all=TRUE)) # clean environment getwd() #update.packages(ask = FALSE, dependencies = c('Suggests')) #update all installed R packages library(data.table) # for fread function library(RColorBrewer) # for nice color palettes library(scales) # for points transparency on plots library(gplots) # for heatmap.2 function setwd("/Users/Zireael/Documents/KITP/Gutmicro_project/my_scripts") # replace with your working directory # load data snps<-fread("../kitp_2021_microbiome_data/snps/Bacteroides_vulgatus_57955/snps_depth_small.txt", data.table = F, stringsAsFactors = F) snps<-fread("../kitp_2021_microbiome_data/snps/Alistipes_putredinis_61533/snps_depth_small.txt", data.table = F, stringsAsFactors = F) rownames(snps)<-snps$site_id snps<-snps[,-1] str(snps) head(snps) # Using the provided snps_depth_small.txt.bz2 files, # calculate what fraction of the ref genome is not present in a typical sample. # How does this vary across species / species? frac<-apply(snps, 2, function(x) length(which(x==0))/length(x)) median(frac) hist(frac,breaks = 15) mean(frac) sd(frac) # Are some genes present in almost all samples? snps<-fread("../kitp_2021_microbiome_data/snps/Bacteroides_vulgatus_57955/snps_depth_small.txt", data.table = F, stringsAsFactors = F) genome<-fread("../kitp_2021_microbiome_data/MIDAS/midas_db/rep_genomes/Bacteroides_vulgatus_57955/genome.features", data.table = F, stringsAsFactors = F) rownames(snps)<-snps$site_id snps<-snps[,-1] rownames(snps)<-apply(as.data.frame(rownames(snps)), 1, function(x) strsplit(x,split = "\\|")[[1]][2]) rownames(snps)[nrow(snps)] cov_all<-data.frame() sum_all<-data.frame() for(i in 1:nrow(genome)){ #i<-1 start<-genome$start[i] end<-genome$end[i] sub.cov<-snps[c(start:end),] cov<-apply(sub.cov, 2, function(x) length(which(x>=3))) # what is the best threshold? cov_all<-rbind(cov_all, cov) summ<-apply(sub.cov, 2, function(x) sum(x)/length(x)) # what is the best threshold? sum_all<-rbind(sum_all, summ) } rownames(cov_all)<-genome$gene_id rownames(sum_all)<-genome$gene_id colnames(cov_all)<-colnames(snps) colnames(sum_all)<-colnames(snps) gene_length<-genome$end-genome$start+1 pres<-vector() for(i in 1:nrow(cov_all)){ # the gene is present if at least half of it's length covered x3 #i<-1 pres[i]<-length(which(cov_all[i,]>gene_length[i]/2)) #pres_all<-rbind(pres_all,pres) } hist(pres) length(which(pres==38)) pres_cov<-vector() for(i in 1:nrow(sum_all)){ # the gene is present if it's covered at least x5 on average #i<-1 pres_cov[i]<-length(which(sum_all[i,]>=5)) } hist(pres_cov) length(which(pres_cov==38)) length(intersect(which(pres==38),which(pres_cov==38))) hist(gene_length) median(gene_length) pres_full<-vector() for(i in 1:nrow(cov_all)){ # the gene is present if it's every position is covered at least x3 #i<-1 pres_full[i]<-length(which(cov_all[i,]==gene_length[i])) } length(which(pres_full==38)) length(intersect(which(pres_cov==38),which(pres_full==38))) sub_genome<-genome[which(pres_full==38),] ```

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password

    or

    By clicking below, you agree to our terms of service.

    Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully