Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • in silico restricion digestion

    Hello,

    I currently have illumina sequencing data and already done denovo assembly and the stuffs needed for that project.

    Now, I am interested in restriction enzyme digestion followed by sequencing. But before running that project I would like to see how it would look like. So, basically I want to cut already sequenced sequences with some restriction enzyme in silico. I don't want to cut just the consensus sequence but all of those sequences and assemble again and see if those cut sequences assemble to form the same consensus sequence an so forth. I may also want to introduce some randomness if possible like missing some true sites.

    Is there some program to do this task. or part of it?

    Thank you

  • #2
    Biopieces (www.biopieces.org) contain several tools that may come in handy. digest_seq springs to mind for digesting your reads e.g.:

    Code:
    read_fasta -i reads.fna | digest_seq -p GGATCC -c 1 | write_fasta -o digest.fna -x
    To introduce some randomness you can divide your reads into two piles. There is no one-step solution for that, but we can do the following:

    Code:
    read_fasta -i reads.fna | random_records -n 10000 | write_fasta -o random.fna -x
    Next we need to subtract the random reads from reads.fna. First we generate a list of IDs from the random reads:

    Code:
    read_fasta -i random.fna | write_tab -k SEQ_NAME -o ids.txt -x
    Next we grab those reads _not_ matching:

    Code:
    read_fasta -i reads.fna | grab -i -E ids.txt | write_fasta -o pile.fna -x
    Then we can mutate the sequences in the random pile using mutate_seq and indel_seq:

    Code:
    read_fasta -i random.fna | mutate_seq -p 5 | indel_seq -P 5 -D 5 | write_fasta -o random_mutated.fna -x
    Now you can collect pile.fna and random_mutated.fna into a simulated set:

    Code:
    read_fasta -i pile.fna,random_mutated.fna | write_fasta -o simulated.fna -x
    I hope this illustrates how Biopieces may help you.


    Cheers,


    Martin

    Comment


    • #3
      Thank Martin,

      Looks very useful. I will look at the program and see if it can answer my question.

      Thanks again

      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, Yesterday, 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