Seqanswers Leaderboard Ad

Collapse

Announcement

Collapse
No announcement yet.
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Counting the number of paralogues for mouse genes gives me the wrong frequency

    I am trying to count the number of paralogues for the mouse homologues of the human protein-coding genes using BioMart. But for example in the 'PLIN4' gene its counting 35,000 paralogues instead of 4.

    We think it is because some genes have one to many paralogues which causes repeats. When I run a single gene its gives me back the correct number of paralogues. Is there a way to either remove these repeats from the results or a way around this so that BioMart doesn't output these repeats.

    I have also thought of maybe running one gene at a time, then counting it by setting up some sort of loop so that it does all of the genes from the list automatically.

    The code I have written so far is:


    Code:
    # Load the biomaRt package:
    
    library(biomaRt)
    ensembl_hsapiens <- useMart("ensembl", 
                              dataset = "hsapiens_gene_ensembl")
    ensembl_mouse <- useMart("ensembl", 
                           dataset = "mmusculus_gene_ensembl")
    
    # Get all human protein coding genes:
    
    hsapien_PC_genes <- getBM(attributes = c("ensembl_gene_id", 
                                             "external_gene_name"), 
                              filters = "biotype", 
                              values = "protein_coding", 
                              mart = ensembl_hsapiens)
    
    
    ensembl_gene_ID <- hsapien_PC_genes$ensembl_gene_id
    
    # Get mouse homologues
    
    mouse_homologues <- getBM(attributes = c("ensembl_gene_id", "external_gene_name", 
                                           "mmusculus_homolog_associated_gene_name"), 
                            filters = "ensembl_gene_id", 
                            values = c(ensembl_gene_ID), 
                            mart = ensembl_hsapiens)
    
    # Get mouse external gene name 
    
    mouse_homologues_external_gene_names <- mouse_homologues$mmusculus_homolog_associated_gene_name
    
    
    mouse_paralogues <- getBM(attributes = c("hsapiens_homolog_associated_gene_name",
                                           "external_gene_name",
                                           "mmusculus_paralog_associated_gene_name"), 
                            filters = "external_gene_name", 
                            values = c(mouse_homologues_external_gene_names) , mart = ensembl_mouse)
    
    # Remove genes with no paralogues 
    mouse_paralogs_data <- mouse_paralogues[!is.na(mouse_paralogues$mmusculus_paralog_associated_gene_name)
                                              | mouse_paralogues$mmusculus_paralog_associated_gene_name==""), ]
    
    # Count paralogues per gene
    
    library(plyr)
    count_mouse_paralogues <- count(mouse_paralogs_data, "external_gene_name")
    View(count_mouse_paralogues)

Latest Articles

Collapse

  • seqadmin
    Current Approaches to Protein Sequencing
    by seqadmin


    Proteins are often described as the workhorses of the cell, and identifying their sequences is key to understanding their role in biological processes and disease. Currently, the most common technique used to determine protein sequences is mass spectrometry. While still a valuable tool, mass spectrometry faces several limitations and requires a highly experienced scientist familiar with the equipment to operate it. Additionally, other proteomic methods, like affinity assays, are constrained...
    04-04-2024, 04:25 PM
  • seqadmin
    Strategies for Sequencing Challenging Samples
    by seqadmin


    Despite advancements in sequencing platforms and related sample preparation technologies, certain sample types continue to present significant challenges that can compromise sequencing results. Pedro Echave, Senior Manager of the Global Business Segment at Revvity, explained that the success of a sequencing experiment ultimately depends on the amount and integrity of the nucleic acid template (RNA or DNA) obtained from a sample. “The better the quality of the nucleic acid isolated...
    03-22-2024, 06:39 AM

ad_right_rmr

Collapse

News

Collapse

Topics Statistics Last Post
Started by seqadmin, 04-11-2024, 12:08 PM
0 responses
18 views
0 likes
Last Post seqadmin  
Started by seqadmin, 04-10-2024, 10:19 PM
0 responses
22 views
0 likes
Last Post seqadmin  
Started by seqadmin, 04-10-2024, 09:21 AM
0 responses
17 views
0 likes
Last Post seqadmin  
Started by seqadmin, 04-04-2024, 09:00 AM
0 responses
49 views
0 likes
Last Post seqadmin  
Working...
X