Closed keiranmraine closed 5 years ago
It looks like there may be a typo in the doc page section:
https://hicexplorer.readthedocs.io/en/latest/content/example_usage.html#reads-mapping
$ bwa mem -A1 -B4 -E50 -L0 index_path \ -U mate_R1.fastq.gz 2>>mate_R1.log | samtools view -Shb - > mate_R1.bam
It appears that -U should be removed from the BWA command. It's not valid to have an option between index and inputs, plus -U is only relevant for paired data (and it's intentionally run as unpaired here).
-U
I think you are right, thanks for reporting.
It looks like there may be a typo in the doc page section:
https://hicexplorer.readthedocs.io/en/latest/content/example_usage.html#reads-mapping
It appears that
-U
should be removed from the BWA command. It's not valid to have an option between index and inputs, plus-U
is only relevant for paired data (and it's intentionally run as unpaired here).