Unconfigured Ad

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ErikFas
    Member
    • Jun 2014
    • 86

    #1

    Finding the genomic location of an insert

    Is there some way to use RNA-seq and/or whole genome sequencing data (I have both for the relevant samples) to find the genomic location of an insert with an unknown location? The insert itself is of known sequence, and aligns correctly to a reference containing only itself + some minor control sequences.

    I was told that one thing I might do is to align my data to the reference containing only the insert sequences, but split my (paired-end) data into two, i.e. only align one pair at a time as a single end ("..._1"-files and "..._2"-files separately). I should then take out all the reads that align (by name) and subset the other original fastq files by them so I get their mates (i.e. subset "..._2" by aligned reads in "..._1") and align those to the normal reference genome, again single-end. I would then, hopefully, get reads aligning to the same region, and I would know the location of my insert (after which I could create some PCR primers and validate the results).

    I have done this with my WGS-data, but the reads map more or less randomly across all chromosomes... I feel I might be subsetting the read names wrong, somehow, mostly because I don't think I'm sure exactly how they are given names and how to find the pairs properly. At the moment, this is what I'm doing:

    Code:
    (... alignment with BWA)
    
    samtools view mapped.sorted.rmdup.input_1.bam | \
    	gawk '{print $1}' | \
    	sort | \
    	uniq > unique.txt
    
    fastqutils filter -whitelist unique.txt input_2.fastq > 1-to-2.fastq
    Am I doing something wrong with the analysis, or is the idea somehow flawed? I am being fairly stringent in the first alignment step, using the -B 40 -O 60 -E 10 options (with BWA), in order to hopefully only align more exact matches (I have also done without this stringency, with more or less the same results).

    Does anybody have any idea what I'm doing wrong, what's wrong with the idea, or have any other idea on how to find an unknown insert?
  • colindaven
    Senior Member
    • Oct 2008
    • 417

    #2
    This is quite difficult in general and leads to false positive hits in my experience.

    It's difficult to have an idea how many false positives you can expect without knowning the read length and genome size / repetitivity.

    Maybe you've tried this, but doing a couple of de novo assemblies and looking for the - if present - flanking genomic regions around your insert would probably be more helpful. If these are mappable and unique in the genome, then that is good evidence.

    Comment

    • ErikFas
      Member
      • Jun 2014
      • 86

      #3
      Ah, interesting... I have never done a de novo assembly before, either on genomic or transcriptome level. I assume you're advicing I do it on the genomic level, or? Could you point me towards some tool(s) that I could use for this?

      Comment

      • colindaven
        Senior Member
        • Oct 2008
        • 417

        #4
        For RNA-seq, a good de novo tool is Trinity. For genomic assemblies, perhaps Abyss, Minia or Soap de novo might suit your needs. Perhaps you can find these on a Galaxy instance somewhere if you have no experience, maybe at Iplant. I think Sweden has a very good infrastructure setup you could get time on too though (I forget what it's called).

        Comment

        Latest Articles

        Collapse

        • 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
        • SEQadmin2
          Proteomic Platforms: How to Choose the Right Analytical Strategy to Improve Detection and Clinical Applications
          by SEQadmin2


          Proteomics platforms are evolving rapidly, with advances in mass spectrometry and affinity-based approaches expanding what researchers can detect and at what scale. As the field moves toward deeper proteome coverage and clinical applications, scientists face an increasingly complex landscape of tools. This article will explore how researchers are navigating these choices to find the right platform for their work.

          The systematic characterization of the human proteome has
          ...
          07-20-2026, 11:48 AM

        ad_right_rmr

        Collapse

        News

        Collapse

        Topics Statistics Last Post
        Started by SEQadmin2, 08-11-2026, 10:35 AM
        0 responses
        11 views
        0 reactions
        Last Post SEQadmin2  
        Started by SEQadmin2, 08-06-2026, 07:41 AM
        0 responses
        30 views
        0 reactions
        Last Post SEQadmin2  
        Started by SEQadmin2, 08-03-2026, 10:13 AM
        0 responses
        48 views
        0 reactions
        Last Post SEQadmin2  
        Started by SEQadmin2, 07-31-2026, 02:55 AM
        0 responses
        48 views
        0 reactions
        Last Post SEQadmin2  
        Working...