(command)
| 153 | print(future.result()) |
| 154 | |
| 155 | def run_command(command): |
| 156 | print("Running command: " + command) |
| 157 | result = subprocess.run(command, shell=True, capture_output=True, text=True) |
| 158 | return result.stdout |
| 159 | |
| 160 | def generate_summary_html(report_dir, fastp_cmd=None): |
| 161 | # Get fastp version from JSON files |