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 using as inputs a bam file and its corresponding bam index file. When these files get localized the bam index file's timestamp sometimes will be newer than the bam file. Understandably some programs/libraries check the timestamp of the index file to ensure its newer than its corresponding bam file and will exit out with an error if this is not the case. Usually one can resolve this by simply using touch to set the timestamp of the file. However in my case the docker image/container is running as a non-root user. When the files are localized, they're writted as the root user and therefore can't be "touched".
The text was updated successfully, but these errors were encountered:
I'm using as inputs a bam file and its corresponding bam index file. When these files get localized the bam index file's timestamp sometimes will be newer than the bam file. Understandably some programs/libraries check the timestamp of the index file to ensure its newer than its corresponding bam file and will exit out with an error if this is not the case. Usually one can resolve this by simply using
touch
to set the timestamp of the file. However in my case the docker image/container is running as a non-root user. When the files are localized, they're writted as the root user and therefore can't be "touched".The text was updated successfully, but these errors were encountered: