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
Snakemake can create protected outputs - which are set as read-only. It might make sense for all downloaded files to be created this way to avoid accidental modification or deletion.
There's also a side-effect of opening GeoPackages in fairly recent (but not latest) versions of QGIS (ref) that means the file is modified, which means opening up some files for exploration can end up triggering a lot of downstream jobs. Workarounds include making the file read-only, or running touch -d '-1 week' ./file.gpkg to change the file mtime.
The text was updated successfully, but these errors were encountered:
Snakemake can create
protected
outputs - which are set as read-only. It might make sense for all downloaded files to be created this way to avoid accidental modification or deletion.There's also a side-effect of opening GeoPackages in fairly recent (but not latest) versions of QGIS (ref) that means the file is modified, which means opening up some files for exploration can end up triggering a lot of downstream jobs. Workarounds include making the file read-only, or running
touch -d '-1 week' ./file.gpkg
to change the file mtime.The text was updated successfully, but these errors were encountered: