Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • Kaskere
    Junior Member
    • Jul 2018
    • 7

    Samtools is not working

    Hello,
    I wrote a script for obtaining bam files, however it looks like it is not understanding flags given. I wrote a flag for no header - bS but still keep getting errors. I already feel desperated

    #!/bin/bash -x

    module load bio/samtools/1.10

    export INPATH=/dir/subdir
    export INPATH1=/dir/subdir1
    export INPATH2=/dir/subdir2
    export INPATH3=/dir/subdir3
    export INPATH4=/dir/subdir4
    export INPATH5=/dir/subdir5
    export INPATH6=/dir/subdir6
    export INPATH7=/dir/subdir7
    export reference=/dir/subdir/refseq.fasta

    samtools faidx $reference

    for file in $INPATH/*.sam ;
    do
    bname=$(basename $file ".sam")
    echo $bname
    file=$INPATH/*.sam
    echo file: $file
    bamfile=$INPATH1/$bname".bam"
    namesort=$INPATH2/$bname"_sorted.bam"
    fixmate=$INPATH3/$bname"_sorted_fixmate.bam"
    positionsort=$INPATH4/$bname"_sorted_fixmate_position.bam"
    markdup=$INPATH5/$bname"_sorted_fixmate_position_markdup.bam"
    bai=$INPATH6/$bname".bai"
    stats=$INPATH7/$bname".txt"
    echo $bamfile $namesort $fixmate $positionsort $markdup

    samtools view -bT $reference $file > $bamfile
    samtools sort -@ 12 -n $bamfile > $namesort
    samtools fixmate -m $namesort > $fixmate
    samtools sort -@ 12 $fixmate > $positionsort
    samtools markdup $positionsort > $markdup
    samtools index > $markdup
    samtools flagstat $markdup > $stats
    done


    this is the error output

    ./samtools.sh: line 25: 348179 Segmentation fault samtools view -bT $reference $file > $bamfile
    + samtools sort -@ 12 -n file.bam
    samtools sort: failed to read header from "file.bam"
  • LucyaSmit
    Banned
    • Sep 2020
    • 1

    #2
    So strange that it happened

    Comment

    Latest Articles

    Collapse

    • SEQadmin2
      Advanced Sequencing Platforms Tackle Neuroscience’s Toughest Genomics Problems
      by SEQadmin2



      Genomics studies in neuroscience face a special challenge due to the brain’s complexity and scarcity of samples. Mapping changes in cell type and state using conventional next-generation sequencing methods remains challenging. Advances in technologies like single-cell sequencing, spatial transcriptomics, and long-read sequencing have opened the door to deeper studies of the brain and diseases like Alzheimer’s, amyotrophic lateral sclerosis (ALS), and schizophrenia.
      ...
      Yesterday, 11:10 AM
    • SEQadmin2
      Cancer Drug Resistance: The Lingering Barrier to Rising Survival
      by SEQadmin2



      Cancer survival rates have significantly increased in the last few decades in the United States, reaching a combined 70% 5-year survival rate by 2021. Behind this number, there are years of research to find new therapies, drug targets, and early detection methods. But there is one core challenge that keeps slowing down these advances, and it’s about drug resistance.

      There is no single reason why many patients don’t respond to treatment as expected. Cancer is...
      07-08-2026, 05:17 AM
    • GATTACAT
      Reply to Nine Things a Sample Prep Scientist Thinks About Before Sequencing
      by GATTACAT
      Love this - good data definitely starts from good input, and poor input can only give relatively poor data. I particularly like the mention of Nanodrop/absorbance based methods for quantification. It's such a toss up if you'll get an accurate reading or what amounts to a randomly generated number, and a lot of library/sequencing related issues can be traced back to poor quant.
      07-01-2026, 11:43 AM

    ad_right_rmr

    Collapse

    News

    Collapse

    Topics Statistics Last Post
    Started by SEQadmin2, Yesterday, 10:04 AM
    0 responses
    11 views
    0 reactions
    Last Post SEQadmin2  
    Started by SEQadmin2, 07-08-2026, 10:08 AM
    0 responses
    9 views
    0 reactions
    Last Post SEQadmin2  
    Started by SEQadmin2, 07-07-2026, 11:05 AM
    0 responses
    17 views
    0 reactions
    Last Post SEQadmin2  
    Started by SEQadmin2, 07-02-2026, 11:08 AM
    0 responses
    31 views
    0 reactions
    Last Post SEQadmin2  
    Working...