Conversation
Super-linter summary
All files and directories linted successfully For more information, see the GitHub Actions workflow run Powered by Super-linter |
Super-linter summary
All files and directories linted successfully For more information, see the GitHub Actions workflow run Powered by Super-linter |
Super-linter summary
All files and directories linted successfully For more information, see the GitHub Actions workflow run Powered by Super-linter |
Super-linter summary
All files and directories linted successfully For more information, see the GitHub Actions workflow run Powered by Super-linter |
Super-linter summary
All files and directories linted successfully For more information, see the GitHub Actions workflow run Powered by Super-linter |
Super-linter summary
All files and directories linted successfully For more information, see the GitHub Actions workflow run Powered by Super-linter |
| f"Error reading sample sheet from {snakemake.params['sample_sheet']}: {e}\n" | ||
| ) | ||
|
|
||
| df_samples["file"] = df_samples["file"].apply(lambda x: os.path.basename(x)) |
There was a problem hiding this comment.
this script produced an error for me because my sample names are numbers, which is not not something completely out of the ordinary. Here we need to add type coercion to make this robust, add line:
df_samples["sample"] = df_samples["sample"].apply(lambda x: str(x))
| rsync ./ntSynt.* {params.outdir}/; | ||
| rsync ./ntSynt-viz.* {params.outdir}/; | ||
| rsync ./ntSynt-viz_* {params.outdir}/; |
There was a problem hiding this comment.
why rsync and not just cp or mv? Isn't rsync another dependency which would be unnecessary just to copy files?
No description provided.