Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • Starting with Bioconductor. How to import .fastq files?

    Hi everyone.

    Hope you can help me. I'm totally beginner in this Bioinformatics world, trying to understand (and analyze if possible) data from RNA-Seq experiment. The final goal is to asses differential expression.

    To start, I wanted to import my raw sequences (.fastq) into R Bioconductor, following the sample workflow described on the website:

    dataDir <- <...>
    fastqDir <- file.path(dataDir, "fastq")
    bamDir <- file.path(dataDir, "bam")
    outputDir <- file.path(dataDir, "output")

    where <…> indicates information provided by the user.

    And here is where I get completely lost… Can anyone explain me what is the information I'm supposed to introduce??

    Thank you in advance!!

  • #2
    Honestly, using R for the initial steps is just more trouble than it's worth (you'll need it to do the differential expression though!).

    It's likely that those lines are just setting up variables so subsequent steps know where to find different types of files. So, you have a single base directory, held in the "dataDir" variable, with fastq, bam, and other files held (and likely produced) in subdirectories.

    So, if your use directory were /home/buttercup_ch, then:
    Code:
    dataDir <- "/home/buttercup_ch"
    fastqDir <-file.path(dataDir, "fastq")
    bamDir <- file.path(dataDir, "bam")
    outputDir <- file.path(dataDir, "output")
    Would do the following:
    Code:
    > fastqDir
    [1] "/home/buttercup_ch/fastq"
    > bamDir
    [1] "/home/buttercup_ch/bam"
    > outputDir
    [1] "/home/buttercup_ch/output"
    I assume that you would then need to copy your fastq files into the place specified by "fastqDir".

    Comment


    • #3
      Hi dpryan!!

      This is the line I was using…
      dataDir <- (Users/Buthercup_ch/酢:Su/ 酢:Su-Projects/RNA-seq/
      RAW sequences/FastQC Reports/St4_DE/St4_DE_t1_ACAGTG_L007_R1_001_fastqc)

      I knew it must be some beginner stupid mistake. I have never really use R, more than to built a box plot. I'm nowadays going deeper into it.

      Thank you very much!!! :-)
      Last edited by buthercup_ch; 10-28-2014, 07:58 PM.

      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...
        04-22-2024, 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, Today, 08:47 AM
      0 responses
      12 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 04-11-2024, 12:08 PM
      0 responses
      60 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 04-10-2024, 10:19 PM
      0 responses
      59 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 04-10-2024, 09:21 AM
      0 responses
      54 views
      0 likes
      Last Post seqadmin  
      Working...
      X