您好我正在尝试使用snakemake 运行管道。具体来说,我按照此处指定的说明运行演示 rna-seq 分析管道:https ://gagneurlab-drop.readthedocs.io/en/latest/installation.html
当我运行时,snakemake --cores 1
我收到以下错误消息::
Error in rule aberrantExpression_bamStats:
jobid: 26
output: /Users/00104561/drop_demo/Output/processed_data/aberrant_expression/v29/coverage/HG00126.1.M_111124_8.tsv
shell:
# identify chromosome format
if samtools idxstats /Users/00104561/drop_demo/Data/rna_bam/HG00126.1.M_111124_8_chr21.bam | grep -qP "^chr";
then
chrNames=$(cut -f1 Scripts/AberrantExpression/pipeline/resource/chr_UCSC_NCBI.txt | tr '
' '|')
else
chrNames=$(cut -f2 Scripts/AberrantExpression/pipeline/resource/chr_UCSC_NCBI.txt | tr '
' '|')
fi
# write coverage from idxstats into file
count=$(samtools idxstats /Users/00104561/drop_demo/Data/rna_bam/HG00126.1.M_111124_8_chr21.bam | grep -E "^($chrNames)" | cut -f3 | paste -sd+ - | bc)
echo -e "HG00126.1.M_111124_8 ${count}" > /Users/00104561/drop_demo/Output/processed_data/aberrant_expression/v29/coverage/HG00126.1.M_111124_8.tsv
(one of the commands exited with non-zero exit code; note that snakemake uses bash strict mode!)
Shutting down, this might take some time.
Exiting because a job execution failed. Look above for error message
任何帮助,将不胜感激!我对生物信息学很陌生!