Closed jurummel closed 1 year ago
Hello :)
This line creates the error:
# write peak-based QC metrics to output file
printf "peak_count FRiP peak_genome_coverage
%d %5.3f %6.4f
" $peak_count $frip $genomecov > MACS2_QC/BL611.filtered.BAM_peaks.qc.txt >2 MACS2_QC/logs/BL611.MACS2_peak_qc.log
Is it possible that it should be more like this?:
# write peak-based QC metrics to output file
printf "peak_count FRiP peak_genome_coverage
%d %5.3f %6.4f
" $peak_count $frip $genomecov > MACS2_QC/BL611.filtered.BAM_peaks.qc.txt >> MACS2_QC/logs/BL611.MACS2_peak_qc.log
Because a file 2
gets created with the following input:
peak_count FRiP peak_genome_coverage
9610 0.562 0.0000
peak_count FRiP peak_genome_coverage
0 0.000 0.0000
Thanks again!
Best, Julian
or more like:
write peak-based QC metrics to output file
printf "peak_count FRiP peak_genome_coverage
%d %5.3f %6.4f
" $peak_count $frip $genomecov > MACS2_QC/BL611.filtered.BAM_peaks.qc.txt 2> MACS2_QC/logs/BL611.MACS2_peak_qc.log
Hi,
Could you try a later version of snakePipes ? This should be fixed.
Kind regards,
Warddeb
yes, this is fixed. Thanks a lot :)
Hi everyone,
I run into an error during the ATAC-seq pipeline.
The file
BL611.MACS2_peak_qc.log
is empty.I previously ran the DNA mapping workflow without error using the following command:
DNA-mapping -i /projects/allelespecificchromatinmouse/work/ATAC/X204SC21092819-Z01-F001_02/raw_data/BL611/ -o /projects/allelespecificchromatinmouse/work/MouseSeqData/results/DNA-Mapping_trim/BL611_filtered/ --local --ext .fq.gz --reads '_1' '_2' BL6_108 --fastqc --trim --trimmer 'trimgalore' --dedup
If you need more information let me know.
Thanks a lot.
Best, Julian