You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm running bwa-meth in the cloud and have therefore no control over the timestamps of the .fa and related files. That is, the converted the .fa file via bwameth.py index-mem2, uploaded them in the correct order (that is, uploading the .fa file first) and still I have the problem that bwa-meth.py complains that
the modification time on the generated c2t files is newer than on the .fa file
Post-hoc manipulation of timestamps via touch is also unsuccessful. Would it be possible to disable checking the modification timestamps or have a flag for this?
The text was updated successfully, but these errors were encountered:
File "/opt/bin/bwameth.py", line 550, in main
File "/opt/bin/bwameth.py", line 559, in <module>
bwa_mem(args.reference, conv_fqs_cmd, ' '.join(map(str, pass_through_args)),
main(sys.argv[1:])
Traceback (most recent call last):
File "/opt/bin/bwameth.py", line 349, in bwa_mem
raise BWAMethException("first run bwameth.py index %s OR bwameth.py index-mem2 %s" % (fa, fa))
__main__.BWAMethException: first run bwameth.py index /reference/bwa-meth/GRCh38.d1.vd1/GRCh38.d1.vd1.fa OR bwameth.py index-mem2 /reference/bwa-meth/GRCh38.d1.vd1/GRCh38.d1.vd1.fa
The problem is that /reference is a read-only mounted image. I can therefore not manipulate the .fa file timestamp via
I'm running bwa-meth in the cloud and have therefore no control over the timestamps of the .fa and related files. That is, the converted the .fa file via
bwameth.py index-mem2
, uploaded them in the correct order (that is, uploading the .fa file first) and still I have the problem that bwa-meth.py complains thatPost-hoc manipulation of timestamps via
touch
is also unsuccessful. Would it be possible to disable checking the modification timestamps or have a flag for this?The text was updated successfully, but these errors were encountered: