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
If the pipeline stops on an error before the download for the GTF-file is finished files get corrupted and not the full dataset is downloaded.
The current fix is to delete the data folder and to restart the script.
Possible solutions:
delete data automatically on error
compare checksum of files
The text was updated successfully, but these errors were encountered:
Option 3: Nextflow has the option to select scripts which will be finished even after an error occurs while running a different script.
process ... {
errorStrategy 'finish'
}
If the pipeline stops on an error before the download for the GTF-file is finished files get corrupted and not the full dataset is downloaded.
The current fix is to delete the data folder and to restart the script.
Possible solutions:
The text was updated successfully, but these errors were encountered: