美文网首页走进转录组
RIP-Seq(3)-- 参考基因组比对分析

RIP-Seq(3)-- 参考基因组比对分析

作者: Z_bioinfo | 来源:发表于2022-06-15 15:19 被阅读0次
    cat >hisat2.sh
    index=/home/zhangyihui/my_data/ref_data/hg38/hisat2_index/grch38/genome
    ls ../fq/*.fastq.gz | while read id;
    do 
    file=$(basename $id)
    sample=${file%_*}
    hisat2  -p 32 -x $index --no-mixed --no-discordant -1 ../fq/${sample}_1.fastq.gz -2 ../fq/${sample}_2.fastq.gz -S ${sample}.sam >${sample}.log 2>&1 
    
    
    samtools view -bS ${sample}.sam -o ${sample}.bam 
    
    samtools sort ${sample}.bam -@ 10 -o ${sample}.sorted.bam
    
    rm -rf ${sample}.bam
    
    samtools index -@ 10 ${sample}.sorted.bam
    
    rm -rf  *.sam
    multiqc *.log
    done
    nohup sh hisat2.sh > hisat2.log 2>&1 &
    
    image.png
    image.png
    image.png

    相关文章

      网友评论

        本文标题:RIP-Seq(3)-- 参考基因组比对分析

        本文链接:https://www.haomeiwen.com/subject/feazmrtx.html