sarek icon indicating copy to clipboard operation
sarek copied to clipboard

We're missing aa proper intervals file for GRCh37

Open maxulysse opened this issue 3 years ago • 1 comments

Description of the bug

we have a .list, we should either have a .bed or a .interval_list

Command used and terminal output

No response

Relevant files

No response

System information

No response

maxulysse avatar Jul 27 '22 14:07 maxulysse

After renaming the interval file (.list) into .bed, I got this error:

Error executing process > 'NFCORE_SAREK:SAREK:PREPARE_INTERVALS:CREATE_INTERVALS_BED (wgs_calling_regions_Sarek.bed)'

Caused by: Process NFCORE_SAREK:SAREK:PREPARE_INTERVALS:CREATE_INTERVALS_BED (wgs_calling_regions_Sarek.bed) terminated with an error exit status (127)

Command executed:

awk -vFS=" " '{ t = $5 # runtime estimate if (t == "") { # no runtime estimate in this row, assume default value t = ($3 - $2) / 1000 } if (name == "" || (chunk > 600 && (chunk + t) > longest * 1.05)) { # start a new chunk name = sprintf("%s_%d-%d.bed", $1, $2+1, $3) chunk = 0 longest = 0 } if (t > longest) longest = t chunk += t print $0 > name }' wgs_calling_regions_Sarek.bed

cat <<-END_VERSIONS > versions.yml "NFCORE_SAREK:SAREK:PREPARE_INTERVALS:CREATE_INTERVALS_BED": gawk: $(awk -Wversion | sed '1!d; s/.Awk //; s/,.//') END_VERSIONS

Command exit status: 127

Command output: (empty)

Command error: WARNING: Skipping mount /var/singularity/mnt/session/etc/resolv.conf [files]: /etc/resolv.conf doesn't exist in container /bin/bash: line 0: cd: /beegfs/scratch/ric.cosr/ric.cosr/B1MG/work/7b/8c58dbb4a706cd1461d6f1daa88364: No such file or directory /bin/bash: .command.run: No such file or directory

Work dir: /beegfs/scratch/ric.cosr/ric.cosr/B1MG/work/7b/8c58dbb4a706cd1461d6f1daa88364

Tip: you can replicate the issue by changing to the process work dir and entering the command bash .command.run

It sounded a little bit strange since both the work directory and the .command.run file are there.

giorgiagandolfi avatar Jul 28 '22 12:07 giorgiagandolfi

This should be fixed in #727 . Let me know, if you run into any more issues :)

FriederikeHanssen avatar Sep 07 '22 15:09 FriederikeHanssen