Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • TopHat-HTSeq-DESeq pipeline (HELP PLEASE!)

    Hello all,

    I am having an issue with importing my information(6 .txt files) within the directory using Linux and R. The pipeline that I am using is TopHat-HTSeq-DESeq. This may be simple, however, I am no expert. I have 6 .txt files in a directory called htseqresults. Within that directory, I go to R (by typing R). The following is what I attempted:

    >library(DESeq)
    > datafile<-system.file(path="/home/work/HTSeq/htseqresults")
    > datafile
    [1] ""

    I attempted to use the Differential expression of RNA-Seq data at the gene level –the DESeq package. The data is not stored in my computer, instead is stored in the server. How will I be able to import these 6 .txt files? Is it possible to do collectively? Do I have to import each at one time?

    Please help.


    AH

  • #2
    At some stage those 6 .txt files will need to be combined into a single data frame (table) for DESeq analysis. You could do this beforehand in python or bash, or after importing them into R.

    If you're not familiar with scripting perhaps the easiest would be to import each file separately in R:

    count_sample1 <- read.csv("/home/work/HTSeq/htseqresults/sample1.txt", sep="\t", row.names=1)
    colnames(count_sample1) <- "sample1"

    count_sample2 <- read.csv("/home/work/HTSeq/htseqresults/sample2.txt", sep="\t", row.names=1)
    colnames(count_sample2) <- "sample2"

    etc.

    Then combine them into a data frame using merge:

    combined_counts <- merge(count_sample1, count_sample2, etc., by=row.names)

    Something like this should work depending on the HTSeq output format. Check the R help pages for "read.csv" and "merge" for further info.

    Good luck!

    Comment


    • #3
      Thank you so very much neavemj!!!!

      Comment

      Latest Articles

      Collapse

      • seqadmin
        Essential Discoveries and Tools in Epitranscriptomics
        by seqadmin


        The field of epigenetics has traditionally concentrated more on DNA and how changes like methylation and phosphorylation of histones impact gene expression and regulation. However, our increased understanding of RNA modifications and their importance in cellular processes has led to a rise in epitranscriptomics research. “Epitranscriptomics brings together the concepts of epigenetics and gene expression,” explained Adrien Leger, PhD, Principal Research Scientist on Modified Bases...
        Yesterday, 07:01 AM
      • 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

      ad_right_rmr

      Collapse

      News

      Collapse

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