Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • R script help

    Hey everyone,

    I am working on an R script that will pull contig ID and ranges of differentially expressed transcripts out of the genomic reference I used as input for Cuffdiff. I have the script working, but when it runs into transcripts with the same contig ID (Different ranges) it will only count the first one it encounters and skips the redunancy.

    The format of my contig name and range is formatted like this:

    NAME START END
    gi340012932gbAFJA01012285.1 0 524
    gi340012938gbAFJA01012279.1 10334 12405
    gi340012938gbAFJA01012279.1 2260 7496
    gi340012938gbAFJA01012279.1 69 2164
    gi340012938gbAFJA01012279.1 9069 10084
    gi340013005gbAFJA01012212.1 5696 9927
    gi340013006gbAFJA01012211.1 4079 11139

    As you can see, there is redundancy in the contig ID, but the ranges are different.



    I am getting warning messages looking something like this:

    Warning messages:
    1: In St:Ed : numerical expression has 2 elements: only the first used
    2: In St:Ed : numerical expression has 2 elements: only the first used
    3: In St:Ed : numerical expression has 2 elements: only the first used
    4: In St:Ed : numerical expression has 2 elements: only the first used

    I have copied my script here:

    setwd("C:/Users/Insect1/Documents/Alex/fasta/Treatment_Specific_Analysis")
    files <- list.files(".") # Will list all your files
    library("seqinr") # load the seqinr package
    dnafile <- ("Mrotcontig.fsa") # change the fasta file into an R object
    data <- read.csv("R_Index_N6NF_Apr_9_2013.csv") #reads the csv file "Index" into R
    myseq <- read.fasta(file = dnafile) # creates a fasta file
    for(i in 1:length(data$NAME)){seqname <-data$NAME[i]
    #seqnameB <- noquote(seqname)
    seqB <- getSequence(eval(parse(text=paste("myseq$", seqname, sep = "")))) # the eval and paste functions are needed to construct the search oommand "myseq$MORT00010950" without spaces or quotes mark which make the command nonfunctional
    St <- data[which(data$NAME == seqname), 2]
    Ed <- data[which(data$NAME == seqname), 3]
    trimmedseq <- seqB[St:Ed]
    seqnameC <- paste(seqname,St,"-",Ed)
    write.fasta(sequences = trimmedseq, names = seqnameC, file.out = "Blast.txt", open = "a")
    }
    Blast <-read.fasta("blast.txt", as.string = TRUE)

    Is there an easy fix for making the script address the redundancy in the contig IDs?

    Thanks,
    Alex

  • #2
    Hi Bioinformaticsnewb,
    My experience in R is below standard. Intuitively, what I'll do which you can try while awaiting a better suggestion would be to rename the ID like so:
    gi340012932gbAFJA01012285.1_0-524
    gi340012938gbAFJA01012279.1-10334-12405
    gi340012938gbAFJA01012279.1_2260-7496

    This will mitigate the effect of redundancy.

    HTH

    Comment


    • #3
      R script help

      Hi,

      I'm not sure that I follow what you're trying to do, but

      Is your 'data' object a data frame, and do columns 2 and 3 have names?

      Does the 'R_Index_ ..' file contain the data that you showed an example of with
      columns for NAME START END ?

      One of the components of 'data' appears to be called 'NAME', because
      you refer to data$NAME[i] at the beginning of the for loop.

      I would try changing

      Code:
      St <- data[which(data$NAME == seqname), 2]
      Ed <- data[which(data$NAME == seqname), 3]
      to

      Code:
      St <-data$START[i]
      Ed <- data$END[i]
      but that depends on what is in your 'index' file.

      Comment

      Latest Articles

      Collapse

      • seqadmin
        Non-Coding RNA Research and Technologies
        by seqadmin




        Non-coding RNAs (ncRNAs) do not code for proteins but play important roles in numerous cellular processes including gene silencing, developmental pathways, and more. There are numerous types including microRNA (miRNA), long ncRNA (lncRNA), circular RNA (circRNA), and more. In this article, we discuss innovative ncRNA research and explore recent technological advancements that improve the study of ncRNAs.

        Nobel Prize for MicroRNA Discovery
        This week,...
        10-07-2024, 08:07 AM
      • seqadmin
        Recent Developments in Metagenomics
        by seqadmin





        Metagenomics has improved the way researchers study microorganisms across diverse environments. Historically, studying microorganisms relied on culturing them in the lab, a method that limits the investigation of many species since most are unculturable1. Metagenomics overcomes these issues by allowing the study of microorganisms regardless of their ability to be cultured or the environments they inhabit. Over time, the field has evolved, especially with the advent...
        09-23-2024, 06:35 AM

      ad_right_rmr

      Collapse

      News

      Collapse

      Topics Statistics Last Post
      Started by seqadmin, 10-11-2024, 06:55 AM
      0 responses
      11 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 10-02-2024, 04:51 AM
      0 responses
      110 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 10-01-2024, 07:10 AM
      0 responses
      114 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 09-30-2024, 08:33 AM
      1 response
      120 views
      0 likes
      Last Post EmiTom
      by EmiTom
       
      Working...
      X