Seqanswers Leaderboard Ad

Collapse

Announcement

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

  • SOAP:segmentation fault

    Hi All,
    I am trying to map solexa PE reads (fastq) from different strains onto reference scaffolds file (fasta) using soap2. The questions I have are:
    1. The alignment works but it seems that soap is not able to read seq data from all the 8 strains I have in the command as the number of reads that it processes is too low to encompass all the 8 strains.
    2. When I try to msort (-k 8,n9) the PE output file from the alignment, it comes back with error (segmentation fault) however, the SE output gets sorted with the same command.
    3. The snp calling through soapsnp (-d <ref> -i <SEoutput.sort> -r 0.00005 –e 0.0001 -t -u -L <100>) generates a huge file many times larger than original file. Is that usual?
    Thanks for the patient reading.

  • #2
    Hi Mansequencer,

    For some reason, MSORT doesn't work with files over a certain size. It works just fine for small files using the command:
    Code:
    $ msort -k 8,n9 mapped.out > mapped.out.sort
    To get around this, you can use the SORT command that is native to most Linux and Unix distributions:
    Code:
    sort -t $'\t' -k 8f,8 -k 9n,9 mapped.out > mapped.out.sort
    To check to see if your files are indeed sorted, you can always isolate just the two columns in question, the chromosome and position:
    Code:
    cut -f 8,9 mapped.out.sort > col_89.txt
    SOAPSNP generates a huge file on purpose. Either of the other formats GLFv2 and GPFv2 may give a smaller footprint output. Try those.

    Best of luck,
    -Awesome

    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
    43 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 04-10-2024, 10:19 PM
    0 responses
    43 views
    0 likes
    Last Post seqadmin  
    Started by seqadmin, 04-10-2024, 09:21 AM
    0 responses
    38 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