We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec593e2 commit ceb8266Copy full SHA for ceb8266
taca/organise/flowcells.py
@@ -63,11 +63,11 @@ def organise_data(self):
63
with filesystem.chdir(self.incoming_path):
64
with open(tar_err, "w") as error_file:
65
tar_command = [
66
- "tar",
67
- *(["--exclude=pod5*"] if not self.include_pod5 else []),
68
- "-cvf",
69
- self.tar_path,
70
- self.fc_id,
+ "tar",
+ *(["--exclude=pod5*"] if not self.include_pod5 else []),
+ "-cvf",
+ self.tar_path,
+ self.fc_id,
71
]
72
result = subprocess.run(tar_command, stderr=error_file)
73
if result.returncode != 0:
0 commit comments