Unconfigured Ad

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Bioinformaticsnewb
    Junior Member
    • Nov 2011
    • 4

    #1

    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
  • Apexy
    Member
    • Apr 2011
    • 62

    #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

    • mastal
      Senior Member
      • Mar 2009
      • 666

      #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

      • SEQadmin2
        How Immunogenomics Decodes Immunity’s Genetic Blueprint
        by SEQadmin2




        The immune system’s power comes from its genetic diversity, allowing myriad threats to be neutralized through first recognizing foreign antigens. That diversity is also what makes the immune system so difficult to study. Recent advances in sequencing technology and computational biology, however, are giving researchers new tools to understand immune responses and immune-related diseases in greater detail.

        This convergence of genetics, immunology, and computation...
        Today, 05:41 AM
      • SEQadmin2
        Beyond CRISPR/Cas9: Understand, Choose, and Use the Right Genome Editing Tool
        by SEQadmin2



        CRISPR/Cas9 sparked the gene editing revolution for both research and therapeutics.1 But this system still showed severe issues that limited its applications. The most prominent were the heavy reliance on PAM sequences, delivery limitations, double-stranded breaks that prompt unintended edits and cell death, and editing inefficiency (both in targeting and in knock-in reliability).

        Despite this, “CRISPR helped turn genome editing from a specialized technique into
        ...
        07-31-2026, 11:01 AM

      ad_right_rmr

      Collapse

      News

      Collapse

      Topics Statistics Last Post
      Started by SEQadmin2, 08-24-2026, 10:32 AM
      0 responses
      42 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 08-20-2026, 11:17 AM
      0 responses
      48 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 08-18-2026, 10:05 AM
      0 responses
      55 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 08-13-2026, 12:22 PM
      0 responses
      50 views
      0 reactions
      Last Post SEQadmin2  
      Working...