• 2024-04-15chip分析
    参考博客https://zhuanlan.zhihu.com/p/377600056https://www.jianshu.com/p/96688fecd864https://zhuanlan.zhihu.com/p/676395563查看质控#使用fastqc查看质控结果fastqc-t40-o1_rawdata_qc/0_rawdata/*.fastq.gz1>1_fastqc.log#使用MutliQC整合FastQC结果#m
  • 2023-11-2816-有参转录组实战2-将批量转录组比对到基因组上
     #1,我们先下载毛果杨的基因组文件和GFF注释文件,自己去NCBI下:(https://www.ncbi.nlm.nih.gov/datasets/genome/GCF_000002775.5/),选Genbank的。 #2,我们将GFF文件和genomic.fna文件上传到服务器,并重命名下,Ptri_genome.gff和Ptri_genome.fa。#3,安装hisat2condainstallhisat2
  • 2023-11-02samtools 安装使用
    官网:https://github.com/samtools/samtoolshttps://github.com/samtools/samtools/releaseshttps://github.com/samtools/samtools/blob/develop/INSTALL 安装:wgethttps://github.com/samtools/samtools/releases/download/1.9/samtools-1.9.tar.bz2tar-jxvfsamtools-1.9.tar
  • 2023-10-13samtools: error while loading shared libraries: libcrypto.so.1.0.0: cannot open shared object file:
     001、问题:conda安装samtools后调用出现如下报错:samtools:errorwhileloadingsharedlibraries:libcrypto.so.1.0.0:cannotopensharedobjectfile:Nosuchfileordirectory 002、解决方法(base)[root@pc1home]#find~-name"libcrypto.so.1*"##
  • 2023-10-13DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): conda.anaconda.org:443
     001、问题conda安装samtools出现如下问题:(base)[root@pc1home]#condainstallsamtools-cbioconda 002、解决方法 
  • 2023-10-06线程数对samtools对bam文件构建索引速度的影响
     001、(base)[b20223040323@admin1test]$lsERR2985610.sorted.markdup.bam##1线程(base)[b20223040323@admin1test]$timesamtoolsindex-@1ERR2985610.sorted.markdup.bamreal1m3.268suser1m35.792ssys0m5.750s
  • 2023-10-04samtools线程数对 sam文件转换为bam文件效率的影响
     001、(base)[b20223040323@admin1batch_test02]$ls##测试sam文件template.slurmtest.sam(base)[b20223040323@admin1batch_test02]$cattemplate.slurm##测试模板#!/bin/bash#SBATCH-Jxxxx#SBATCH-pCnode2##SBATCH-o%j.xxxx.r
  • 2023-08-26转录组分析流程
    condainstallsra-tools#先找到SRAdatabase中的基因(SRA_accessionList.csv)#批量下载基因awk'{print"prefetch"$1"&"}'SRA_accessionList.csv>run_prefetch.sh#利用awk生成代码并保存再shell文件中#将sra转换为fastqfastq-dumpxxx.sra#下载参考基因组g
  • 2023-02-11samtools 实现对bam文件统计测序深度 和 比对率
     001、利用samtools计算每一个位点的测序深度[b20223040323@admin1test]$ls##测试bam文件SRR21814498.sorted.markdup.bamSRR2181
  • 2023-02-08去除Bam文件中的PCR 重复
    1.使用samtools去除重复[email protected]|samtoolsfixmate-m-@20--|samtoolssort-@20|samtoolsmarkdup-r-@20-->file.rmdup.bam
  • 2022-12-04Downsampling Bam file | 平衡测序深度
     目前对peak的数据处理上,发现测序深度对peak的数量有很大影响,即使做了normalization也没办法,所以这里希望从原始的bam文件开始做downsampling。参考一:DownsampleBAMfi