diff --git a/.github/generate_test_coverage_report.py b/.github/generate_test_coverage_report.py new file mode 100644 index 00000000..e41198bd --- /dev/null +++ b/.github/generate_test_coverage_report.py @@ -0,0 +1,633 @@ +#!/usr/bin/env python3 +# /// script +# dependencies = [ +# "boto3", +# "requests", +# ] +# /// +""" +nf-core Test Coverage Report Generator + +This script generates comprehensive reports showing: +- All nf-core pipelines and their releases +- Which releases have test results in S3 +- Which releases are missing test results +- Coverage statistics and actionable insights + +The script outputs reports in multiple formats: +- Markdown (for GitHub Actions summaries) +- CSV (for data analysis) +- JSON (for programmatic access) +""" + +import boto3 +import requests +import sys +import argparse +import os +import json +import csv +from datetime import datetime +from typing import Dict, List, Set, Optional, Any +from dataclasses import dataclass +import logging + +# Configure logging +logging.basicConfig( + level=logging.INFO, format="%(asctime)s - %(levelname)s - %(message)s" +) +logger = logging.getLogger(__name__) + + +@dataclass +class PipelineRelease: + """Data class for pipeline release information""" + + pipeline: str + version: str + tag_name: str + sha: str + published_at: str + is_prerelease: bool + has_test_results: bool = False + + +@dataclass +class PipelineCoverage: + """Data class for pipeline test coverage statistics""" + + pipeline: str + total_releases: int + tested_releases: int + coverage_percentage: float + missing_releases: List[str] + latest_release: Optional[str] + latest_release_tested: bool + + +@dataclass +class CoverageReport: + """Main coverage report data structure""" + + generated_at: str + total_pipelines: int + total_releases: int + total_tested_releases: int + overall_coverage_percentage: float + pipeline_coverage: List[PipelineCoverage] + orphaned_results: List[str] + summary_insights: Dict[str, Any] + + +def fetch_all_pipeline_releases( + github_token: Optional[str] = None, +) -> Dict[str, List[PipelineRelease]]: + """Fetch all releases for all nf-core pipelines from official pipelines.json""" + try: + logger.info( + "Fetching nf-core pipeline release data from official pipelines.json" + ) + + # Fetch the official pipelines data from nf-core website + pipelines_url = "https://raw.githubusercontent.com/nf-core/website/refs/heads/main/public/pipelines.json" + + logger.info(f"Fetching pipelines data from {pipelines_url}") + response = requests.get(pipelines_url, timeout=30) + response.raise_for_status() + pipelines_data = response.json() + + if "remote_workflows" not in pipelines_data: + raise ValueError( + "Invalid pipelines.json format: missing 'remote_workflows'" + ) + + pipelines = pipelines_data["remote_workflows"] + logger.info(f"Found {len(pipelines)} official nf-core pipelines") + + # Build comprehensive release data from pipelines.json + all_pipeline_releases = {} + + for pipeline in pipelines: + pipeline_name = pipeline.get("name") + if not pipeline_name: + logger.warning("Pipeline missing name, skipping") + continue + + releases = pipeline.get("releases", []) + if not releases: + logger.debug(f"No releases found for pipeline {pipeline_name}") + continue + + logger.info(f"Processing {len(releases)} releases for {pipeline_name}") + pipeline_releases = [] + + # Process each release + for release in releases: + tag_name = release.get("tag_name", "").strip() + tag_sha = release.get("tag_sha", "").strip() + published_at = release.get("published_at", "") + + # Skip dev releases but include all others (including prereleases) + if tag_name == "dev" or not tag_name or not tag_sha: + logger.debug( + f"Skipping dev/invalid release {tag_name} for {pipeline_name}" + ) + continue + + # Determine if this is a prerelease (basic heuristic) + is_prerelease = ( + "alpha" in tag_name.lower() + or "beta" in tag_name.lower() + or "rc" in tag_name.lower() + or "-" in tag_name # Common pattern for prereleases + ) + + pipeline_release = PipelineRelease( + pipeline=pipeline_name, + version=tag_name, + tag_name=tag_name, + sha=tag_sha, + published_at=published_at, + is_prerelease=is_prerelease, + ) + pipeline_releases.append(pipeline_release) + + if pipeline_releases: + # Sort by publication date (newest first) + pipeline_releases.sort(key=lambda x: x.published_at, reverse=True) + all_pipeline_releases[pipeline_name] = pipeline_releases + logger.info( + f"Added {len(pipeline_releases)} releases for {pipeline_name}" + ) + + total_releases = sum( + len(releases) for releases in all_pipeline_releases.values() + ) + logger.info( + f"Successfully loaded {len(all_pipeline_releases)} pipelines with {total_releases} total releases" + ) + + return all_pipeline_releases + + except Exception as e: + logger.error(f"Failed to fetch pipeline release data: {e}") + sys.exit(1) + + +def scan_s3_test_results(s3_bucket: str) -> Set[str]: + """Scan S3 bucket to identify which releases have test results""" + try: + s3_client = boto3.client("s3") + logger.info(f"Scanning S3 bucket {s3_bucket} for test results") + + paginator = s3_client.get_paginator("list_objects_v2") + results_paths = set() + + # Look for all results- prefixes across all pipelines + page_iterator = paginator.paginate(Bucket=s3_bucket, Delimiter="/") + + for page in page_iterator: + # Get pipeline-level prefixes + for prefix_info in page.get("CommonPrefixes", []): + pipeline_prefix = prefix_info["Prefix"] + + # Look for results- directories within each pipeline + pipeline_paginator = s3_client.get_paginator("list_objects_v2") + pipeline_iterator = pipeline_paginator.paginate( + Bucket=s3_bucket, Prefix=pipeline_prefix, Delimiter="/" + ) + + for pipeline_page in pipeline_iterator: + for sub_prefix in pipeline_page.get("CommonPrefixes", []): + sub_dir = sub_prefix["Prefix"] + if "/results-" in sub_dir: + # Extract the results directory path (remove trailing slash) + results_path = sub_dir.rstrip("/") + results_paths.add(results_path) + + logger.info(f"Found {len(results_paths)} test result directories in S3") + return results_paths + + except Exception as e: + logger.error(f"Failed to scan S3 for test results: {e}") + sys.exit(1) + + +def analyze_coverage( + all_releases: Dict[str, List[PipelineRelease]], s3_results: Set[str] +) -> CoverageReport: + """Analyze test coverage by cross-referencing releases with S3 results""" + logger.info("Analyzing test coverage...") + + # Create lookup for S3 results by SHA + s3_results_by_sha: Dict[str, Set[str]] = {} + orphaned_results = [] + + for result_path in s3_results: + if "/results-" in result_path: + parts = result_path.split("/results-") + if len(parts) == 2: + pipeline = parts[0] + sha = parts[1] + + if pipeline not in s3_results_by_sha: + s3_results_by_sha[pipeline] = set() + s3_results_by_sha[pipeline].add(sha) + else: + orphaned_results.append(result_path) + + # Analyze coverage for each pipeline + pipeline_coverage_list = [] + total_releases = 0 + total_tested_releases = 0 + + for pipeline_name, releases in all_releases.items(): + pipeline_shas = s3_results_by_sha.get(pipeline_name, set()) + + tested_count = 0 + missing_releases = [] + + for release in releases: + total_releases += 1 + if release.sha in pipeline_shas: + release.has_test_results = True + tested_count += 1 + total_tested_releases += 1 + else: + missing_releases.append(release.version) + + coverage_percentage = (tested_count / len(releases) * 100) if releases else 0 + + # Get latest release info + latest_release = releases[0] if releases else None + latest_release_tested = ( + latest_release.has_test_results if latest_release else False + ) + + pipeline_coverage = PipelineCoverage( + pipeline=pipeline_name, + total_releases=len(releases), + tested_releases=tested_count, + coverage_percentage=coverage_percentage, + missing_releases=missing_releases, + latest_release=latest_release.version if latest_release else None, + latest_release_tested=latest_release_tested, + ) + + pipeline_coverage_list.append(pipeline_coverage) + + # Sort by coverage percentage (lowest first for actionability) + pipeline_coverage_list.sort(key=lambda x: x.coverage_percentage) + + # Calculate overall statistics + overall_coverage = ( + (total_tested_releases / total_releases * 100) if total_releases > 0 else 0 + ) + + # Generate insights + pipelines_needing_attention = [ + p for p in pipeline_coverage_list if p.coverage_percentage < 50 + ] + latest_releases_untested = [ + p for p in pipeline_coverage_list if not p.latest_release_tested + ] + + summary_insights = { + "pipelines_below_50_percent_coverage": len(pipelines_needing_attention), + "pipelines_with_untested_latest_release": len(latest_releases_untested), + "lowest_coverage_pipelines": [ + {"pipeline": p.pipeline, "coverage": p.coverage_percentage} + for p in pipeline_coverage_list[:5] + ], + "pipelines_needing_latest_release_tests": [ + {"pipeline": p.pipeline, "latest_release": p.latest_release} + for p in latest_releases_untested[:10] + ], + } + + # Find orphaned results (results in S3 without matching releases) + for pipeline_name, shas in s3_results_by_sha.items(): + if pipeline_name in all_releases: + known_shas = {release.sha for release in all_releases[pipeline_name]} + orphaned_shas = shas - known_shas + for sha in orphaned_shas: + orphaned_results.append(f"{pipeline_name}/results-{sha}") + + report = CoverageReport( + generated_at=datetime.utcnow().isoformat(), + total_pipelines=len(all_releases), + total_releases=total_releases, + total_tested_releases=total_tested_releases, + overall_coverage_percentage=overall_coverage, + pipeline_coverage=pipeline_coverage_list, + orphaned_results=orphaned_results, + summary_insights=summary_insights, + ) + + logger.info(f"Coverage analysis complete: {overall_coverage:.1f}% overall coverage") + return report + + +def generate_markdown_report(report: CoverageReport) -> str: + """Generate a markdown-formatted coverage report""" + md_lines = [] + + # Header + md_lines.append("# 🧪 nf-core Test Coverage Report") + md_lines.append("") + md_lines.append(f"**Generated:** {report.generated_at}") + md_lines.append("") + + # Summary Statistics + md_lines.append("## šŸ“Š Summary Statistics") + md_lines.append("") + md_lines.append(f"- **Total Pipelines:** {report.total_pipelines}") + md_lines.append(f"- **Total Releases:** {report.total_releases}") + md_lines.append(f"- **Tested Releases:** {report.total_tested_releases}") + md_lines.append( + f"- **Overall Coverage:** {report.overall_coverage_percentage:.1f}%" + ) + md_lines.append("") + + # Key Insights + insights = report.summary_insights + md_lines.append("## šŸ” Key Insights") + md_lines.append("") + md_lines.append( + f"- **Pipelines below 50% coverage:** {insights['pipelines_below_50_percent_coverage']}" + ) + md_lines.append( + f"- **Pipelines with untested latest release:** {insights['pipelines_with_untested_latest_release']}" + ) + md_lines.append("") + + if insights["lowest_coverage_pipelines"]: + md_lines.append("### 🚨 Lowest Coverage Pipelines") + md_lines.append("") + for item in insights["lowest_coverage_pipelines"]: + md_lines.append(f"- **{item['pipeline']}:** {item['coverage']:.1f}%") + md_lines.append("") + + if insights["pipelines_needing_latest_release_tests"]: + md_lines.append("### šŸ†• Latest Releases Needing Tests") + md_lines.append("") + for item in insights["pipelines_needing_latest_release_tests"][:5]: + md_lines.append(f"- **{item['pipeline']}:** {item['latest_release']}") + md_lines.append("") + + # Per-Pipeline Coverage (show worst performers first) + md_lines.append("## šŸ“‹ Per-Pipeline Coverage") + md_lines.append("") + md_lines.append( + "| Pipeline | Total | Tested | Coverage | Latest Release | Latest Tested | Missing Releases |" + ) + md_lines.append( + "|----------|-------|--------|----------|----------------|---------------|------------------|" + ) + + for coverage in report.pipeline_coverage[:20]: # Show top 20 worst performers + latest_status = "āœ…" if coverage.latest_release_tested else "āŒ" + missing_count = len(coverage.missing_releases) + missing_preview = ", ".join(coverage.missing_releases[:3]) + if missing_count > 3: + missing_preview += f" (+{missing_count - 3} more)" + + md_lines.append( + f"| {coverage.pipeline} | {coverage.total_releases} | " + f"{coverage.tested_releases} | {coverage.coverage_percentage:.1f}% | " + f"{coverage.latest_release} | {latest_status} | {missing_preview} |" + ) + + if len(report.pipeline_coverage) > 20: + md_lines.append( + f"| ... | ... | ... | ... | ... | ... | *({len(report.pipeline_coverage) - 20} more pipelines)* |" + ) + + md_lines.append("") + + # Orphaned Results + if report.orphaned_results: + md_lines.append("## šŸ—‘ļø Orphaned Test Results") + md_lines.append("") + md_lines.append("Test results found in S3 that don't match any known release:") + md_lines.append("") + for orphan in report.orphaned_results[:10]: + md_lines.append(f"- `{orphan}`") + if len(report.orphaned_results) > 10: + md_lines.append(f"- ... and {len(report.orphaned_results) - 10} more") + md_lines.append("") + + return "\n".join(md_lines) + + +def generate_csv_report(report: CoverageReport) -> str: + """Generate a CSV-formatted coverage report""" + import io + + output = io.StringIO() + writer = csv.writer(output) + + # Header + writer.writerow( + [ + "pipeline", + "total_releases", + "tested_releases", + "coverage_percentage", + "latest_release", + "latest_release_tested", + "missing_releases", + ] + ) + + # Data rows + for coverage in report.pipeline_coverage: + writer.writerow( + [ + coverage.pipeline, + coverage.total_releases, + coverage.tested_releases, + f"{coverage.coverage_percentage:.1f}", + coverage.latest_release, + coverage.latest_release_tested, + "; ".join(coverage.missing_releases), + ] + ) + + return output.getvalue() + + +def generate_json_report(report: CoverageReport) -> str: + """Generate a JSON-formatted coverage report""" + + # Convert dataclasses to dictionaries for JSON serialization + def dataclass_to_dict(obj): + if hasattr(obj, "__dict__"): + return obj.__dict__ + return obj + + report_dict = { + "generated_at": report.generated_at, + "total_pipelines": report.total_pipelines, + "total_releases": report.total_releases, + "total_tested_releases": report.total_tested_releases, + "overall_coverage_percentage": report.overall_coverage_percentage, + "pipeline_coverage": [dataclass_to_dict(pc) for pc in report.pipeline_coverage], + "orphaned_results": report.orphaned_results, + "summary_insights": report.summary_insights, + } + + return json.dumps(report_dict, indent=2) + + +def write_github_actions_outputs(report: CoverageReport): + """Write report data to GitHub Actions outputs""" + github_output = os.environ.get("GITHUB_OUTPUT") + if github_output: + with open(github_output, "a") as f: + f.write(f"total_pipelines={report.total_pipelines}\n") + f.write(f"total_releases={report.total_releases}\n") + f.write(f"total_tested_releases={report.total_tested_releases}\n") + f.write( + f"overall_coverage_percentage={report.overall_coverage_percentage:.1f}\n" + ) + f.write( + f"pipelines_below_50_percent={report.summary_insights['pipelines_below_50_percent_coverage']}\n" + ) + f.write( + f"latest_releases_untested={report.summary_insights['pipelines_with_untested_latest_release']}\n" + ) + + # Format worst performers for GitHub output + worst_performers = [] + for coverage in report.pipeline_coverage[:5]: + worst_performers.append( + f"- **{coverage.pipeline}**: {coverage.coverage_percentage:.1f}%" + ) + f.write(f"worst_performers={'\\n'.join(worst_performers)}\n") + + # Format latest releases needing tests + latest_untested = [] + for item in report.summary_insights[ + "pipelines_needing_latest_release_tests" + ][:5]: + latest_untested.append( + f"- **{item['pipeline']}**: {item['latest_release']}" + ) + f.write(f"latest_untested={'\\n'.join(latest_untested)}\n") + + logger.info("GitHub Actions outputs written to $GITHUB_OUTPUT") + + +def main(): + parser = argparse.ArgumentParser( + description="Generate nf-core test coverage report" + ) + parser.add_argument( + "--bucket", default="nf-core-awsmegatests", help="S3 bucket name" + ) + parser.add_argument( + "--github-token", + help="GitHub personal access token for higher rate limits (optional)", + ) + parser.add_argument( + "--output-dir", default="./reports", help="Output directory for report files" + ) + parser.add_argument( + "--formats", + nargs="+", + default=["markdown", "csv", "json"], + choices=["markdown", "csv", "json"], + help="Output formats to generate", + ) + parser.add_argument( + "--test-mode", + action="store_true", + help="Run in test mode with mock S3 data (for testing without AWS credentials)", + ) + + args = parser.parse_args() + + logger.info("Starting nf-core test coverage report generation") + logger.info(f"S3 bucket: {args.bucket}") + logger.info(f"Output directory: {args.output_dir}") + logger.info(f"Output formats: {', '.join(args.formats)}") + + # Create output directory + os.makedirs(args.output_dir, exist_ok=True) + + # Step 1: Fetch all pipeline releases + all_releases = fetch_all_pipeline_releases(args.github_token) + + # Step 2: Scan S3 for test results (or use mock data in test mode) + if args.test_mode: + logger.info("Running in test mode - using mock S3 data") + # Create some mock S3 results for testing + s3_results = set() + for pipeline_name, releases in list(all_releases.items())[ + :3 + ]: # Take first 3 pipelines + for release in releases[:2]: # Take first 2 releases per pipeline + s3_results.add(f"{pipeline_name}/results-{release.sha}") + logger.info(f"Mock S3 results: {len(s3_results)} test result directories") + else: + s3_results = scan_s3_test_results(args.bucket) + + # Step 3: Analyze coverage + report = analyze_coverage(all_releases, s3_results) + + # Step 4: Generate reports in requested formats + timestamp = datetime.utcnow().strftime("%Y%m%d_%H%M%S") + + if "markdown" in args.formats: + markdown_report = generate_markdown_report(report) + markdown_path = os.path.join( + args.output_dir, f"test_coverage_report_{timestamp}.md" + ) + with open(markdown_path, "w") as f: + f.write(markdown_report) + logger.info(f"Markdown report written to: {markdown_path}") + + if "csv" in args.formats: + csv_report = generate_csv_report(report) + csv_path = os.path.join( + args.output_dir, f"test_coverage_report_{timestamp}.csv" + ) + with open(csv_path, "w") as f: + f.write(csv_report) + logger.info(f"CSV report written to: {csv_path}") + + if "json" in args.formats: + json_report = generate_json_report(report) + json_path = os.path.join( + args.output_dir, f"test_coverage_report_{timestamp}.json" + ) + with open(json_path, "w") as f: + f.write(json_report) + logger.info(f"JSON report written to: {json_path}") + + # Step 5: Write GitHub Actions outputs + write_github_actions_outputs(report) + + # Final summary + logger.info("=" * 80) + logger.info("TEST COVERAGE REPORT SUMMARY") + logger.info("=" * 80) + logger.info( + f"šŸ“Š Overall Coverage: {report.overall_coverage_percentage:.1f}% ({report.total_tested_releases}/{report.total_releases} releases)" + ) + logger.info(f"šŸ” Pipelines analyzed: {report.total_pipelines}") + logger.info( + f"🚨 Pipelines below 50% coverage: {report.summary_insights['pipelines_below_50_percent_coverage']}" + ) + logger.info( + f"šŸ†• Latest releases needing tests: {report.summary_insights['pipelines_with_untested_latest_release']}" + ) + logger.info(f"šŸ—‘ļø Orphaned test results: {len(report.orphaned_results)}") + logger.info("=" * 80) + + logger.info("Test coverage report generation completed successfully") + + +if __name__ == "__main__": + main() diff --git a/.github/s3_results_tagger.py b/.github/s3_results_tagger.py new file mode 100644 index 00000000..8d7a26a8 --- /dev/null +++ b/.github/s3_results_tagger.py @@ -0,0 +1,578 @@ +#!/usr/bin/env python3 +# /// script +# dependencies = [ +# "boto3", +# "requests", +# ] +# /// +""" +S3 Results Tagging Script + +This script identifies and tags S3 results directories to manage orphaned +directories that cause "no AWS results found" issues on the website. + +The script: +- Fetches current pipeline releases from GitHub API +- Scans S3 bucket for all results-* directories +- Tags current releases with metadata (pipeline, release, sha, status) +- Tags orphaned directories with deleteme=true for future cleanup +""" + +import boto3 +import requests +import sys +import argparse +import os +from datetime import datetime +import logging + +# Configure logging +logging.basicConfig( + level=logging.INFO, format="%(asctime)s - %(levelname)s - %(message)s" +) +logger = logging.getLogger(__name__) + + +def fetch_pipeline_data_from_github(github_token: str | None = None) -> dict: + """Fetch current pipeline release data from GitHub API""" + try: + logger.info("Fetching nf-core pipeline data from GitHub API") + + # Set up headers with optional authentication + headers = { + "Accept": "application/vnd.github+json", + "X-GitHub-Api-Version": "2022-11-28", + } + if github_token: + headers["Authorization"] = f"Bearer {github_token}" + logger.info("Using GitHub token for authentication") + + # Get all nf-core repositories + repos_url = "https://api.github.com/orgs/nf-core/repos" + all_repos = [] + page = 1 + + while True: + logger.info(f"Fetching nf-core repositories page {page}") + response = requests.get( + f"{repos_url}?type=public&per_page=100&page={page}", + headers=headers, + timeout=30, + ) + response.raise_for_status() + repos = response.json() + + if not repos: + break + + # Filter out archived repos and non-pipeline repos + active_repos = [repo for repo in repos if not repo.get("archived", True)] + all_repos.extend(active_repos) + page += 1 + + logger.info(f"Found {len(all_repos)} active nf-core repositories") + + # Build lookup of current release SHAs + current_shas = {} + + for repo in all_repos: + repo_name = repo["name"] + + # Skip non-pipeline repositories (tools, modules, etc.) + ignored_repos = [ + "tools", + "modules", + "subworkflows", + "website", + "test-datasets", + ] + if repo_name in ignored_repos: + continue + + try: + # Get releases for this repository + releases_url = ( + f"https://api.github.com/repos/nf-core/{repo_name}/releases" + ) + releases_response = requests.get( + releases_url, headers=headers, timeout=30 + ) + releases_response.raise_for_status() + releases = releases_response.json() + + # Process each release (excluding dev and draft releases) + for release in releases: + if ( + release.get("tag_name") != "dev" + and not release.get("draft", False) + and release.get("tag_name", "").strip() != "" + ): + tag_name = release["tag_name"] + + # Get the commit SHA for this tag + tag_url = f"https://api.github.com/repos/nf-core/{repo_name}/git/ref/tags/{tag_name}" + tag_response = requests.get( + tag_url, headers=headers, timeout=30 + ) + + if tag_response.status_code == 200: + tag_data = tag_response.json() + sha = tag_data.get("object", {}).get("sha") + + if sha: + current_shas[f"{repo_name}/results-{sha}"] = { + "pipeline": repo_name, + "version": tag_name, + "sha": sha, + } + else: + logger.warning( + f"Could not get SHA for {repo_name} tag {tag_name}" + ) + + except Exception as e: + logger.warning(f"Failed to fetch releases for {repo_name}: {e}") + continue + + logger.info(f"Found {len(current_shas)} current release results directories") + return current_shas + + except Exception as e: + logger.error(f"Failed to fetch pipeline data from GitHub: {e}") + sys.exit(1) + + +def fetch_pipeline_data(pipelines_json_url: str) -> dict: + """Fetch current pipeline release data (legacy function for compatibility)""" + # If it's the old S3 URL, redirect to GitHub API + if "nf-core.s3.amazonaws.com" in pipelines_json_url: + logger.warning("Detected legacy S3 URL, switching to GitHub API") + return fetch_pipeline_data_from_github() + + # Otherwise try the provided URL (for custom endpoints) + try: + logger.info(f"Fetching pipeline data from {pipelines_json_url}") + response = requests.get(pipelines_json_url, timeout=30) + response.raise_for_status() + data = response.json() + + # Build lookup of current release SHAs + current_shas = {} + for pipeline in data.get("remote_workflows", []): + pipeline_name = pipeline["name"] + for release in pipeline.get("releases", []): + if release["tag_name"] != "dev": + sha = release.get("tag_sha") + if sha: + current_shas[f"{pipeline_name}/results-{sha}"] = { + "pipeline": pipeline_name, + "version": release["tag_name"], + "sha": sha, + } + + logger.info(f"Found {len(current_shas)} current release results directories") + return current_shas + except Exception as e: + logger.error(f"Failed to fetch pipeline data: {e}") + sys.exit(1) + + +def list_s3_results_directories(s3_bucket: str) -> list: + """List all results-* directories in S3""" + try: + s3_client = boto3.client("s3") + logger.info(f"Scanning S3 bucket {s3_bucket} for results directories") + + paginator = s3_client.get_paginator("list_objects_v2") + results_dirs = set() + + # Look for all results- prefixes across all pipelines + page_iterator = paginator.paginate(Bucket=s3_bucket, Delimiter="/") + + for page in page_iterator: + # Get pipeline-level prefixes + for prefix_info in page.get("CommonPrefixes", []): + pipeline_prefix = prefix_info["Prefix"] + + # Look for results- directories within each pipeline + pipeline_paginator = s3_client.get_paginator("list_objects_v2") + pipeline_iterator = pipeline_paginator.paginate( + Bucket=s3_bucket, Prefix=pipeline_prefix, Delimiter="/" + ) + + for pipeline_page in pipeline_iterator: + for sub_prefix in pipeline_page.get("CommonPrefixes", []): + sub_dir = sub_prefix["Prefix"] + if "/results-" in sub_dir: + # Extract the results directory path + results_dir = sub_dir.rstrip("/") + results_dirs.add(results_dir) + + logger.info(f"Found {len(results_dirs)} results directories in S3") + return list(results_dirs) + except Exception as e: + logger.error(f"Failed to list S3 directories: {e}") + sys.exit(1) + + +def get_object_tags(s3_client, s3_bucket: str, prefix: str) -> dict: + """Get existing tags for an S3 prefix by checking a representative object""" + try: + # Find a representative object in this prefix + response = s3_client.list_objects_v2( + Bucket=s3_bucket, Prefix=prefix + "/", MaxKeys=1 + ) + + if "Contents" not in response or not response["Contents"]: + return {} + + # Get tags from the first object found + first_object = response["Contents"][0]["Key"] + tag_response = s3_client.get_object_tagging(Bucket=s3_bucket, Key=first_object) + + return {tag["Key"]: tag["Value"] for tag in tag_response.get("TagSet", [])} + except Exception: + return {} + + +def tag_objects_in_prefix( + s3_client, s3_bucket: str, prefix: str, tags: dict, dry_run: bool = True +) -> bool: + """Apply tags to all objects under a prefix""" + if dry_run: + logger.info(f"DRY RUN: Would tag objects in {prefix} with {tags}") + return True + + try: + paginator = s3_client.get_paginator("list_objects_v2") + page_iterator = paginator.paginate(Bucket=s3_bucket, Prefix=prefix + "/") + + objects_tagged = 0 + tag_set = [{"Key": k, "Value": v} for k, v in tags.items()] + + for page in page_iterator: + for obj in page.get("Contents", []): + try: + s3_client.put_object_tagging( + Bucket=s3_bucket, Key=obj["Key"], Tagging={"TagSet": tag_set} + ) + objects_tagged += 1 + except Exception as e: + logger.warning(f"Failed to tag {obj['Key']}: {e}") + + logger.info(f"Tagged {objects_tagged} objects in {prefix}") + return True + except Exception as e: + logger.error(f"Failed to tag objects in {prefix}: {e}") + return False + + +def delete_objects_in_prefix( + s3_client, + s3_bucket: str, + prefix: str, + dry_run: bool = True, + enable_deletion: bool = False, +) -> bool: + """Delete all objects under a prefix (if deletion is enabled)""" + if not enable_deletion: + logger.info(f"Deletion not enabled - would delete objects in {prefix}") + return False + + if dry_run: + logger.info(f"DRY RUN: Would delete objects in {prefix}") + return True + + try: + paginator = s3_client.get_paginator("list_objects_v2") + page_iterator = paginator.paginate(Bucket=s3_bucket, Prefix=prefix + "/") + + objects_deleted = 0 + + for page in page_iterator: + if "Contents" in page: + # Delete objects in batches + delete_keys = [{"Key": obj["Key"]} for obj in page["Contents"]] + if delete_keys: + s3_client.delete_objects( + Bucket=s3_bucket, Delete={"Objects": delete_keys} + ) + objects_deleted += len(delete_keys) + + logger.info(f"Deleted {objects_deleted} objects in {prefix}") + return True + except Exception as e: + logger.error(f"Failed to delete objects in {prefix}: {e}") + return False + + +def main(): + parser = argparse.ArgumentParser(description="Tag S3 results directories") + parser.add_argument( + "--bucket", default="nf-core-awsmegatests", help="S3 bucket name" + ) + parser.add_argument( + "--pipelines-json-url", + default="https://api.github.com/orgs/nf-core/repos", + help="URL to pipelines data source (GitHub API or custom JSON endpoint)", + ) + parser.add_argument( + "--github-token", + help="GitHub personal access token for higher rate limits (optional)", + ) + parser.add_argument( + "--dry-run", + action="store_true", + default=True, + help="Dry run mode (default: True)", + ) + parser.add_argument("--live", action="store_true", help="Disable dry run mode") + parser.add_argument( + "--enable-deletion", + action="store_true", + help="Enable deletion of orphaned directories (DANGEROUS)", + ) + + args = parser.parse_args() + + # Handle dry run logic + dry_run = args.dry_run and not args.live + + # Configuration + s3_bucket = args.bucket + pipelines_json_url = args.pipelines_json_url + enable_deletion = args.enable_deletion + + logger.info("Starting S3 results tagging job") + logger.info(f"Bucket: {s3_bucket}") + logger.info(f"Dry run mode: {dry_run}") + logger.info(f"Deletion enabled: {enable_deletion}") + + # Fetch current pipeline data + if ( + "api.github.com" in pipelines_json_url + or "nf-core.s3.amazonaws.com" in pipelines_json_url + ): + current_releases = fetch_pipeline_data_from_github(args.github_token) + else: + current_releases = fetch_pipeline_data(pipelines_json_url) + + # List all results directories in S3 + s3_results_dirs = list_s3_results_directories(s3_bucket) + + # Initialize S3 client + s3_client = boto3.client("s3") + + # Statistics and tracking + stats = { + "current_tagged": 0, + "orphaned_tagged": 0, + "orphaned_deleted": 0, + "errors": 0, + } + + # Track orphaned directories for detailed reporting + orphaned_directories = [] + current_directories = [] + + logger.info("Starting tagging analysis...") + + for results_dir in s3_results_dirs: + try: + logger.info(f"Processing: {results_dir}") + + # Check if this is a current release + if results_dir in current_releases: + # Current release - tag as active + release_info = current_releases[results_dir] + tags = { + "pipeline": release_info["pipeline"], + "release": release_info["version"], + "sha": release_info["sha"], + "status": "current", + "tagged_date": datetime.utcnow().isoformat(), + "tagged_by": "nf-core-ops-automation", + } + + if tag_objects_in_prefix( + s3_client, s3_bucket, results_dir, tags, dry_run + ): + stats["current_tagged"] += 1 + current_directories.append( + { + "path": results_dir, + "pipeline": release_info["pipeline"], + "version": release_info["version"], + "sha": release_info["sha"][:12] + "...", + } + ) + logger.info(f"āœ… Tagged current release: {results_dir}") + else: + stats["errors"] += 1 + + else: + # Orphaned directory - tag for deletion + pipeline_name = results_dir.split("/")[0] + tags = { + "pipeline": pipeline_name, + "status": "orphaned", + "deleteme": "true", + "tagged_date": datetime.utcnow().isoformat(), + "tagged_by": "nf-core-ops-automation", + } + + if tag_objects_in_prefix( + s3_client, s3_bucket, results_dir, tags, dry_run + ): + stats["orphaned_tagged"] += 1 + # Extract SHA from directory name for reporting + sha_part = ( + results_dir.split("/results-")[-1] + if "/results-" in results_dir + else "unknown" + ) + orphaned_directories.append( + { + "path": results_dir, + "pipeline": pipeline_name, + "sha": sha_part[:12] + "..." + if len(sha_part) > 12 + else sha_part, + "will_be_deleted": enable_deletion, + } + ) + logger.warning(f"šŸ—‘ļø Tagged orphaned directory: {results_dir}") + + # Optionally delete if enabled + if enable_deletion: + if delete_objects_in_prefix( + s3_client, s3_bucket, results_dir, dry_run, enable_deletion + ): + stats["orphaned_deleted"] += 1 + else: + stats["errors"] += 1 + + except Exception as e: + logger.error(f"Error processing {results_dir}: {e}") + stats["errors"] += 1 + + # Print final summary + logger.info("=" * 80) + logger.info("S3 RESULTS TAGGING SUMMARY") + logger.info("=" * 80) + logger.info("šŸ“Š STATISTICS:") + logger.info(f" • Current releases tagged: {stats['current_tagged']}") + logger.info(f" • Orphaned directories tagged: {stats['orphaned_tagged']}") + if enable_deletion: + logger.info(f" • Orphaned directories deleted: {stats['orphaned_deleted']}") + logger.info(f" • Errors encountered: {stats['errors']}") + logger.info(f" • Mode: {'DRY RUN' if dry_run else 'LIVE'}") + + # Print current directories (if not too many) + if current_directories: + logger.info(f"\nāœ… CURRENT RELEASE DIRECTORIES ({len(current_directories)}):") + if len(current_directories) <= 10: + for dir_info in current_directories[:10]: + logger.info( + f" • {dir_info['pipeline']} v{dir_info['version']} ({dir_info['sha']})" + ) + else: + for dir_info in current_directories[:5]: + logger.info( + f" • {dir_info['pipeline']} v{dir_info['version']} ({dir_info['sha']})" + ) + logger.info( + f" ... and {len(current_directories) - 5} more current releases" + ) + + # Print orphaned directories with details + if orphaned_directories: + logger.info( + f"\nšŸ—‘ļø ORPHANED DIRECTORIES TO BE TAGGED ({len(orphaned_directories)}):" + ) + logger.info( + " These directories will be tagged with 'deleteme=true' for cleanup:" + ) + for dir_info in orphaned_directories: + deletion_status = ( + "šŸ—‘ļø WILL BE DELETED" + if dir_info["will_be_deleted"] + else "šŸ·ļø TAGGED ONLY" + ) + logger.info( + f" • {dir_info['path']} ({dir_info['sha']}) - {deletion_status}" + ) + + if not enable_deletion: + logger.info( + "\nšŸ’” NOTE: Deletion is disabled. Use --enable-deletion to actually remove orphaned directories." + ) + + # Group by pipeline for easier reading + pipeline_counts = {} + for dir_info in orphaned_directories: + pipeline = dir_info["pipeline"] + pipeline_counts[pipeline] = pipeline_counts.get(pipeline, 0) + 1 + + if len(pipeline_counts) > 1: + logger.info("\nšŸ“‹ ORPHANED DIRECTORIES BY PIPELINE:") + for pipeline, count in sorted(pipeline_counts.items()): + logger.info(f" • {pipeline}: {count} orphaned directories") + else: + logger.info( + "\n✨ No orphaned directories found - all results directories are current!" + ) + + logger.info("=" * 80) + + # Output GitHub Actions friendly format to GITHUB_OUTPUT file + github_output = os.environ.get("GITHUB_OUTPUT") + if github_output: + with open(github_output, "a") as f: + f.write(f"current_tagged={stats['current_tagged']}\n") + f.write(f"orphaned_tagged={stats['orphaned_tagged']}\n") + f.write(f"orphaned_deleted={stats['orphaned_deleted']}\n") + f.write(f"errors={stats['errors']}\n") + f.write(f"total_orphaned_count={len(orphaned_directories)}\n") + + # Output orphaned directories list (limit to first 50 for display) + # Format orphaned directories nicely for markdown display + orphaned_list = [] + for dir_info in orphaned_directories[:50]: # Limit to first 50 + pipeline = dir_info["pipeline"] + sha = dir_info["sha"] + path = dir_info["path"] + orphaned_list.append(f"- `{path}` (SHA: {sha})") + + orphaned_directories_formatted = "\\n".join(orphaned_list) + if len(orphaned_directories) > 50: + orphaned_directories_formatted += ( + f"\\n- ... and {len(orphaned_directories) - 50} more" + ) + + f.write(f"orphaned_directories={orphaned_directories_formatted}\n") + + # Output pipeline breakdown + pipeline_counts = {} + for dir_info in orphaned_directories: + pipeline = dir_info["pipeline"] + pipeline_counts[pipeline] = pipeline_counts.get(pipeline, 0) + 1 + + # Format pipeline breakdown nicely for markdown display + pipeline_breakdown = [] + for pipeline, count in sorted(pipeline_counts.items()): + pipeline_breakdown.append(f"- **{pipeline}**: {count} directories") + f.write(f"pipeline_breakdown={'\\n'.join(pipeline_breakdown)}\n") + + logger.info("GitHub Actions outputs written to $GITHUB_OUTPUT") + + # Exit with error code if there were significant issues + if stats["errors"] > len(s3_results_dirs) * 0.1: # More than 10% errors + logger.error("Too many errors encountered - check configuration") + sys.exit(1) + + logger.info("S3 results tagging completed successfully") + + +if __name__ == "__main__": + main() diff --git a/.github/workflows/s3-results-tagging.yml b/.github/workflows/s3-results-tagging.yml new file mode 100644 index 00000000..feec3d36 --- /dev/null +++ b/.github/workflows/s3-results-tagging.yml @@ -0,0 +1,142 @@ +name: S3 Results Tagging + +on: + schedule: + # Run weekly on Sundays at 02:00 UTC to avoid peak usage + - cron: "0 2 * * 0" + pull_request: + paths: + - ".github/workflows/s3-results-tagging.yml" + - ".github/s3_results_tagger.py" + workflow_dispatch: + inputs: + dry_run: + description: "Dry run mode (log actions without applying tags)" + required: false + default: "true" + type: choice + options: + - "true" + - "false" + +env: + AWS_REGION: eu-west-1 + S3_BUCKET: nf-core-awsmegatests + +jobs: + tag-s3-results: + runs-on: ubuntu-latest + permissions: + contents: read # Required to checkout repository + + steps: + - name: Checkout repository + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 + + - name: Configure AWS credentials + uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # v4 + with: + aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} + aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + aws-region: ${{ env.AWS_REGION }} + + - name: Install uv + uses: astral-sh/setup-uv@v6 + + - name: Set up Python + run: uv python install 3.13 + + - name: Run S3 Results Tagging + id: s3_tagging + run: | + # Convert GitHub inputs to script arguments + ARGS="--bucket ${{ env.S3_BUCKET }} --github-token ${{ secrets.GITHUB_TOKEN }}" + + # Force dry-run mode for PR events (safety measure) + if [ "${{ github.event_name }}" = "pull_request" ]; then + echo "šŸ”’ Pull request detected - forcing dry-run mode for safety" + # Don't add --live flag for PRs + else + # Handle dry run mode for other events + if [ "${{ github.event.inputs.dry_run || 'true' }}" = "false" ]; then + ARGS="$ARGS --live" + fi + fi + + # Handle deletion enable (disabled for PRs) + if [ "${{ github.event_name }}" != "pull_request" ] && [ "${{ github.event.inputs.enable_deletion || 'false' }}" = "true" ]; then + ARGS="$ARGS --enable-deletion" + fi + + # Run the Python script with uv + echo "šŸš€ Running S3 results tagger with args: $ARGS" + uv run .github/s3_results_tagger.py $ARGS + + - name: Post job summary + if: always() + run: | + echo "# šŸ·ļø S3 Results Tagging Summary" >> $GITHUB_STEP_SUMMARY + echo "" >> $GITHUB_STEP_SUMMARY + + # Basic information + echo "## šŸ“‹ Job Information" >> $GITHUB_STEP_SUMMARY + echo "| Setting | Value |" >> $GITHUB_STEP_SUMMARY + echo "|---------|-------|" >> $GITHUB_STEP_SUMMARY + echo "| **Trigger** | ${{ github.event_name }} |" >> $GITHUB_STEP_SUMMARY + echo "| **Bucket** | \`${{ env.S3_BUCKET }}\` |" >> $GITHUB_STEP_SUMMARY + if [ "${{ github.event_name }}" = "pull_request" ]; then + echo "| **Mode** | šŸ”’ DRY RUN (forced for PR safety) |" >> $GITHUB_STEP_SUMMARY + echo "| **Deletion enabled** | āŒ Disabled for PRs |" >> $GITHUB_STEP_SUMMARY + else + MODE="${{ github.event.inputs.dry_run == 'false' && 'šŸ”“ LIVE' || '🟔 DRY RUN' }}" + DELETION="${{ github.event.inputs.enable_deletion == 'true' && 'āš ļø Enabled' || 'āœ… Disabled' }}" + echo "| **Mode** | $MODE |" >> $GITHUB_STEP_SUMMARY + echo "| **Deletion enabled** | $DELETION |" >> $GITHUB_STEP_SUMMARY + fi + echo "| **Timestamp** | $(date -u) |" >> $GITHUB_STEP_SUMMARY + echo "" >> $GITHUB_STEP_SUMMARY + + # Display statistics from step outputs + echo "## šŸ“Š Statistics" >> $GITHUB_STEP_SUMMARY + echo "- āœ… **Current releases tagged**: ${{ steps.s3_tagging.outputs.current_tagged }}" >> $GITHUB_STEP_SUMMARY + echo "- šŸ—‘ļø **Orphaned directories tagged**: ${{ steps.s3_tagging.outputs.orphaned_tagged }}" >> $GITHUB_STEP_SUMMARY + if [ "${{ steps.s3_tagging.outputs.orphaned_deleted }}" != "0" ]; then + echo "- šŸ—‘ļø **Orphaned directories deleted**: ${{ steps.s3_tagging.outputs.orphaned_deleted }}" >> $GITHUB_STEP_SUMMARY + fi + echo "- āŒ **Errors encountered**: ${{ steps.s3_tagging.outputs.errors }}" >> $GITHUB_STEP_SUMMARY + echo "" >> $GITHUB_STEP_SUMMARY + + # Display orphaned directories if any + if [ "${{ steps.s3_tagging.outputs.orphaned_tagged }}" != "0" ]; then + echo "## šŸ—‘ļø Orphaned Directories Found" >> $GITHUB_STEP_SUMMARY + echo "" >> $GITHUB_STEP_SUMMARY + echo "The following directories were tagged as orphaned (no longer matching current pipeline releases):" >> $GITHUB_STEP_SUMMARY + echo "" >> $GITHUB_STEP_SUMMARY + + # Display orphaned directories from step output + echo "${{ steps.s3_tagging.outputs.orphaned_directories }}" >> $GITHUB_STEP_SUMMARY + + echo "" >> $GITHUB_STEP_SUMMARY + if [ "${{ github.event.inputs.enable_deletion || 'false' }}" = "false" ]; then + echo "šŸ’” **Note**: Deletion is disabled. These directories are only tagged with \`deleteme=true\` for future cleanup." >> $GITHUB_STEP_SUMMARY + else + echo "āš ļø **Warning**: Deletion is enabled. These directories will be permanently removed." >> $GITHUB_STEP_SUMMARY + fi + echo "" >> $GITHUB_STEP_SUMMARY + + # Display pipeline breakdown if available + if [ -n "${{ steps.s3_tagging.outputs.pipeline_breakdown }}" ]; then + echo "### šŸ“‹ Breakdown by Pipeline" >> $GITHUB_STEP_SUMMARY + echo "" >> $GITHUB_STEP_SUMMARY + echo "${{ steps.s3_tagging.outputs.pipeline_breakdown }}" >> $GITHUB_STEP_SUMMARY + echo "" >> $GITHUB_STEP_SUMMARY + fi + else + echo "## ✨ All Clear!" >> $GITHUB_STEP_SUMMARY + echo "" >> $GITHUB_STEP_SUMMARY + echo "No orphaned directories found - all results directories match current pipeline releases." >> $GITHUB_STEP_SUMMARY + echo "" >> $GITHUB_STEP_SUMMARY + fi + + echo "---" >> $GITHUB_STEP_SUMMARY + echo "šŸ“‹ **Full details**: Check the [workflow logs](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}) for complete output." >> $GITHUB_STEP_SUMMARY diff --git a/.github/workflows/test-coverage-report.yml b/.github/workflows/test-coverage-report.yml new file mode 100644 index 00000000..325e346d --- /dev/null +++ b/.github/workflows/test-coverage-report.yml @@ -0,0 +1,147 @@ +name: nf-core Test Coverage Report + +on: + schedule: + # Run weekly on Mondays at 06:00 UTC (after S3 tagging runs on Sunday) + - cron: "0 6 * * 1" + pull_request: + paths: + - ".github/workflows/test-coverage-report.yml" + - ".github/generate_test_coverage_report.py" + workflow_dispatch: + inputs: + output_formats: + description: "Output formats to generate" + required: false + default: "markdown csv json" + type: string + +env: + AWS_REGION: eu-west-1 + S3_BUCKET: nf-core-awsmegatests + +jobs: + generate-coverage-report: + runs-on: ubuntu-latest + permissions: + contents: read # Required to checkout repository + + steps: + - name: Checkout repository + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 + + - name: Configure AWS credentials + uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # v4 + with: + aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} + aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + aws-region: ${{ env.AWS_REGION }} + + - name: Install uv + uses: astral-sh/setup-uv@v6 + + - name: Set up Python + run: uv python install 3.13 + + - name: Generate test coverage report + id: coverage_report + run: | + # Set output formats (default to all formats) + OUTPUT_FORMATS="${{ github.event.inputs.output_formats || 'markdown csv json' }}" + + # Create reports directory + mkdir -p reports + + # Run the coverage report generator + echo "šŸš€ Generating nf-core test coverage report..." + uv run .github/generate_test_coverage_report.py \ + --bucket ${{ env.S3_BUCKET }} \ + --github-token ${{ secrets.GITHUB_TOKEN }} \ + --output-dir reports \ + --formats $OUTPUT_FORMATS + + - name: Upload report artifacts + if: always() + uses: actions/upload-artifact@v4 + with: + name: test-coverage-reports + path: reports/ + retention-days: 90 + + - name: Post job summary + if: always() + run: | + echo "# 🧪 nf-core Test Coverage Report" >> $GITHUB_STEP_SUMMARY + echo "" >> $GITHUB_STEP_SUMMARY + + # Basic information + echo "## šŸ“‹ Report Information" >> $GITHUB_STEP_SUMMARY + echo "| Setting | Value |" >> $GITHUB_STEP_SUMMARY + echo "|---------|-------|" >> $GITHUB_STEP_SUMMARY + echo "| **Trigger** | ${{ github.event_name }} |" >> $GITHUB_STEP_SUMMARY + echo "| **S3 Bucket** | \`${{ env.S3_BUCKET }}\` |" >> $GITHUB_STEP_SUMMARY + echo "| **Timestamp** | $(date -u) |" >> $GITHUB_STEP_SUMMARY + echo "" >> $GITHUB_STEP_SUMMARY + + # Overall statistics from step outputs + echo "## šŸ“Š Overall Coverage Statistics" >> $GITHUB_STEP_SUMMARY + echo "" >> $GITHUB_STEP_SUMMARY + echo "- 🧬 **Total Pipelines:** ${{ steps.coverage_report.outputs.total_pipelines }}" >> $GITHUB_STEP_SUMMARY + echo "- šŸ“¦ **Total Releases:** ${{ steps.coverage_report.outputs.total_releases }}" >> $GITHUB_STEP_SUMMARY + echo "- āœ… **Tested Releases:** ${{ steps.coverage_report.outputs.total_tested_releases }}" >> $GITHUB_STEP_SUMMARY + echo "- šŸ“ˆ **Overall Coverage:** ${{ steps.coverage_report.outputs.overall_coverage_percentage }}%" >> $GITHUB_STEP_SUMMARY + echo "" >> $GITHUB_STEP_SUMMARY + + # Key insights + echo "## šŸ” Key Insights" >> $GITHUB_STEP_SUMMARY + echo "" >> $GITHUB_STEP_SUMMARY + echo "- 🚨 **Pipelines below 50% coverage:** ${{ steps.coverage_report.outputs.pipelines_below_50_percent }}" >> $GITHUB_STEP_SUMMARY + echo "- šŸ†• **Latest releases needing tests:** ${{ steps.coverage_report.outputs.latest_releases_untested }}" >> $GITHUB_STEP_SUMMARY + echo "" >> $GITHUB_STEP_SUMMARY + + # Worst performers + if [ -n "${{ steps.coverage_report.outputs.worst_performers }}" ]; then + echo "## 🚨 Pipelines Needing Attention (Lowest Coverage)" >> $GITHUB_STEP_SUMMARY + echo "" >> $GITHUB_STEP_SUMMARY + echo "${{ steps.coverage_report.outputs.worst_performers }}" >> $GITHUB_STEP_SUMMARY + echo "" >> $GITHUB_STEP_SUMMARY + fi + + # Latest releases needing tests + if [ -n "${{ steps.coverage_report.outputs.latest_untested }}" ]; then + echo "## šŸ†• Latest Releases Needing Tests" >> $GITHUB_STEP_SUMMARY + echo "" >> $GITHUB_STEP_SUMMARY + echo "${{ steps.coverage_report.outputs.latest_untested }}" >> $GITHUB_STEP_SUMMARY + echo "" >> $GITHUB_STEP_SUMMARY + fi + + echo "## šŸ“‹ Report Files" >> $GITHUB_STEP_SUMMARY + echo "" >> $GITHUB_STEP_SUMMARY + echo "The following report files have been generated and are available as artifacts:" >> $GITHUB_STEP_SUMMARY + echo "" >> $GITHUB_STEP_SUMMARY + + # List generated files + if ls reports/*.md >/dev/null 2>&1; then + echo "- šŸ“ **Markdown Report:** Human-readable summary with insights" >> $GITHUB_STEP_SUMMARY + fi + if ls reports/*.csv >/dev/null 2>&1; then + echo "- šŸ“Š **CSV Report:** Machine-readable data for analysis" >> $GITHUB_STEP_SUMMARY + fi + if ls reports/*.json >/dev/null 2>&1; then + echo "- šŸ“‹ **JSON Report:** Structured data for programmatic access" >> $GITHUB_STEP_SUMMARY + fi + echo "" >> $GITHUB_STEP_SUMMARY + + echo "## šŸ’” Recommended Actions" >> $GITHUB_STEP_SUMMARY + echo "" >> $GITHUB_STEP_SUMMARY + echo "Based on this analysis, consider:" >> $GITHUB_STEP_SUMMARY + echo "" >> $GITHUB_STEP_SUMMARY + echo "1. **Priority Testing:** Focus on pipelines with low coverage percentages" >> $GITHUB_STEP_SUMMARY + echo "2. **Latest Releases:** Test the most recent releases that are currently untested" >> $GITHUB_STEP_SUMMARY + echo "3. **Resource Allocation:** Consider additional compute resources for comprehensive testing" >> $GITHUB_STEP_SUMMARY + echo "4. **Cleanup:** Review orphaned test results for potential cleanup" >> $GITHUB_STEP_SUMMARY + echo "" >> $GITHUB_STEP_SUMMARY + + echo "---" >> $GITHUB_STEP_SUMMARY + echo "šŸ“‹ **Download Reports:** Use the 'test-coverage-reports' artifact above for detailed analysis" >> $GITHUB_STEP_SUMMARY + echo "šŸ”— **Workflow Logs:** [View detailed execution logs](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})" >> $GITHUB_STEP_SUMMARY diff --git a/README.md b/README.md index e8297e2f..4f8e205d 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,120 @@ +# nf-core Operations Infrastructure + +This repository manages infrastructure and automation for nf-core operations, including AWS resources, GitHub management, and test coverage analysis. + +## 🧪 Test Coverage Reporting + +The repository includes a comprehensive test coverage reporting system that analyzes which nf-core pipeline releases have been tested against the AWS megatests infrastructure. + +### Features + +- **Complete Coverage Analysis**: Scans all nf-core pipelines and their releases +- **S3 Integration**: Cross-references releases with test results in the S3 bucket +- **Gap Identification**: Identifies which releases are missing test results +- **Multiple Output Formats**: Generates markdown, CSV, and JSON reports +- **GitHub Actions Integration**: Automated weekly reporting with summaries +- **Actionable Insights**: Prioritizes pipelines and releases needing attention + +### Usage + +#### Manual Report Generation + +```bash +# Generate all report formats +uv run .github/generate_test_coverage_report.py + +# Generate specific formats only +uv run .github/generate_test_coverage_report.py --formats markdown csv + +# Custom S3 bucket and output directory +uv run .github/generate_test_coverage_report.py \ + --bucket my-test-bucket \ + --output-dir custom-reports \ + --github-token $GITHUB_TOKEN +``` + +#### Automated Reporting + +The test coverage report runs automatically: + +- **Weekly**: Every Monday at 06:00 UTC +- **On Pull Requests**: When report files are modified +- **Manual Trigger**: Via GitHub Actions workflow dispatch + +### Report Contents + +The generated reports include: + +1. **Summary Statistics**: Overall coverage percentages and counts +2. **Pipeline Analysis**: Per-pipeline breakdown of tested vs missing releases +3. **Priority Insights**: Pipelines with lowest coverage needing attention +4. **Latest Release Status**: Which latest releases haven't been tested yet +5. **Orphaned Results**: Test results in S3 without matching releases + +### Report Formats + +- **Markdown (`.md`)**: Human-readable summary with insights and recommendations +- **CSV (`.csv`)**: Machine-readable data for spreadsheet analysis +- **JSON (`.json`)**: Structured data for programmatic processing + +## šŸ·ļø S3 Results Tagging + +The repository also includes an S3 results tagging system that: + +- Identifies current pipeline releases in S3 +- Tags orphaned directories for cleanup +- Provides statistics and reporting + +## šŸ“ Project Structure + +``` +ā”œā”€ā”€ .github/ +│ ā”œā”€ā”€ generate_test_coverage_report.py # Test coverage analysis script +│ ā”œā”€ā”€ s3_results_tagger.py # S3 cleanup and tagging script +│ └── workflows/ +│ ā”œā”€ā”€ test-coverage-report.yml # Coverage reporting workflow +│ └── s3-results-tagging.yml # S3 tagging workflow +└── pulumi/ # Infrastructure as Code projects + ā”œā”€ā”€ AWSMegatests/ # AWS megatests infrastructure + ā”œā”€ā”€ github/ # GitHub management + └── ... +``` + +## šŸš€ Getting Started + +### Prerequisites + +- Python 3.11+ +- [uv](https://docs.astral.sh/uv/) package manager +- AWS credentials (for S3 access) +- GitHub token (for API access) + +### Installation + +```bash +# Install UV +curl -LsSf https://astral.sh/uv/install.sh | sh + +# Dependencies are automatically managed by uv scripts +``` + +### Running Reports + +1. Configure AWS credentials for S3 access +2. Optionally set GITHUB_TOKEN for higher API rate limits +3. Run the desired script with uv + +## šŸ“Š Example Output + +The test coverage report provides insights like: + +- Overall coverage: 75.3% (450/597 releases tested) +- Pipelines below 50% coverage: 12 pipelines need attention +- Latest releases needing tests: 8 recent releases untested +- Priority: Focus on pipelines with 0-25% coverage first + +## šŸ”— References + https://www.hashicorp.com/blog/managing-github-with-terraform https://github.com/ipdxco/awesome-github-as-code-users diff --git a/action.log b/action.log new file mode 100644 index 00000000..7dfb66e2 --- /dev/null +++ b/action.log @@ -0,0 +1,3087 @@ +2025-08-21T21:53:11.1634032Z Current runner version: '2.328.0' +2025-08-21T21:53:11.1657355Z ##[group]Runner Image Provisioner +2025-08-21T21:53:11.1658193Z Hosted Compute Agent +2025-08-21T21:53:11.1658839Z Version: 20250818.377 +2025-08-21T21:53:11.1659415Z Commit: 3c593e9f75fe0b87e893bca80d6e12ba089c61fc +2025-08-21T21:53:11.1660114Z Build Date: 2025-08-18T14:52:18Z +2025-08-21T21:53:11.1660772Z ##[endgroup] +2025-08-21T21:53:11.1661294Z ##[group]Operating System +2025-08-21T21:53:11.1661844Z Ubuntu +2025-08-21T21:53:11.1662355Z 24.04.2 +2025-08-21T21:53:11.1662787Z LTS +2025-08-21T21:53:11.1663261Z ##[endgroup] +2025-08-21T21:53:11.1663851Z ##[group]Runner Image +2025-08-21T21:53:11.1664392Z Image: ubuntu-24.04 +2025-08-21T21:53:11.1664873Z Version: 20250818.1.0 +2025-08-21T21:53:11.1666301Z Included Software: https://github.com/actions/runner-images/blob/ubuntu24/20250818.1/images/ubuntu/Ubuntu2404-Readme.md +2025-08-21T21:53:11.1667800Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu24%2F20250818.1 +2025-08-21T21:53:11.1668882Z ##[endgroup] +2025-08-21T21:53:11.1669879Z ##[group]GITHUB_TOKEN Permissions +2025-08-21T21:53:11.1671937Z Contents: read +2025-08-21T21:53:11.1672498Z Metadata: read +2025-08-21T21:53:11.1672975Z ##[endgroup] +2025-08-21T21:53:11.1675600Z Secret source: Actions +2025-08-21T21:53:11.1676533Z Prepare workflow directory +2025-08-21T21:53:11.2058864Z Prepare all required actions +2025-08-21T21:53:11.2097299Z Getting action download info +2025-08-21T21:53:11.6396669Z Download action repository 'actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683' (SHA:11bd71901bbe5b1630ceea73d27597364c9af683) +2025-08-21T21:53:12.9950858Z Download action repository 'aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502' (SHA:e3dd6a429d7300a6a4c196c26e071d42e0343502) +2025-08-21T21:53:13.7974055Z Download action repository 'astral-sh/setup-uv@v6' (SHA:4959332f0f014c5280e7eac8b70c90cb574c9f9b) +2025-08-21T21:53:14.8428119Z Complete job name: tag-s3-results +2025-08-21T21:53:14.9071192Z ##[group]Run actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 +2025-08-21T21:53:14.9071876Z with: +2025-08-21T21:53:14.9072079Z repository: nf-core/ops +2025-08-21T21:53:14.9072456Z token: *** +2025-08-21T21:53:14.9072659Z ssh-strict: true +2025-08-21T21:53:14.9072858Z ssh-user: git +2025-08-21T21:53:14.9073056Z persist-credentials: true +2025-08-21T21:53:14.9073288Z clean: true +2025-08-21T21:53:14.9073502Z sparse-checkout-cone-mode: true +2025-08-21T21:53:14.9073746Z fetch-depth: 1 +2025-08-21T21:53:14.9073944Z fetch-tags: false +2025-08-21T21:53:14.9074142Z show-progress: true +2025-08-21T21:53:14.9074344Z lfs: false +2025-08-21T21:53:14.9074522Z submodules: false +2025-08-21T21:53:14.9074723Z set-safe-directory: true +2025-08-21T21:53:14.9075310Z env: +2025-08-21T21:53:14.9075504Z AWS_REGION: eu-west-1 +2025-08-21T21:53:14.9075733Z S3_BUCKET: nf-core-awsmegatests +2025-08-21T21:53:14.9075964Z ##[endgroup] +2025-08-21T21:53:15.0130521Z Syncing repository: nf-core/ops +2025-08-21T21:53:15.0131766Z ##[group]Getting Git version info +2025-08-21T21:53:15.0132148Z Working directory is '/home/runner/work/ops/ops' +2025-08-21T21:53:15.0132664Z [command]/usr/bin/git version +2025-08-21T21:53:15.2699397Z git version 2.51.0 +2025-08-21T21:53:15.2725959Z ##[endgroup] +2025-08-21T21:53:15.2740386Z Temporarily overriding HOME='/home/runner/work/_temp/944fc9a2-09ae-4616-b538-58d39881a4c0' before making global git config changes +2025-08-21T21:53:15.2741440Z Adding repository directory to the temporary git global config as a safe directory +2025-08-21T21:53:15.2746339Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/ops/ops +2025-08-21T21:53:15.3108299Z Deleting the contents of '/home/runner/work/ops/ops' +2025-08-21T21:53:15.3111686Z ##[group]Initializing the repository +2025-08-21T21:53:15.3116184Z [command]/usr/bin/git init /home/runner/work/ops/ops +2025-08-21T21:53:15.5469616Z hint: Using 'master' as the name for the initial branch. This default branch name +2025-08-21T21:53:15.5470293Z hint: is subject to change. To configure the initial branch name to use in all +2025-08-21T21:53:15.5471105Z hint: of your new repositories, which will suppress this warning, call: +2025-08-21T21:53:15.5471522Z hint: +2025-08-21T21:53:15.5471855Z hint: git config --global init.defaultBranch +2025-08-21T21:53:15.5472203Z hint: +2025-08-21T21:53:15.5472537Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and +2025-08-21T21:53:15.5473098Z hint: 'development'. The just-created branch can be renamed via this command: +2025-08-21T21:53:15.5473524Z hint: +2025-08-21T21:53:15.5473745Z hint: git branch -m +2025-08-21T21:53:15.5473993Z hint: +2025-08-21T21:53:15.5474352Z hint: Disable this message with "git config set advice.defaultBranchName false" +2025-08-21T21:53:15.5595365Z Initialized empty Git repository in /home/runner/work/ops/ops/.git/ +2025-08-21T21:53:15.5607735Z [command]/usr/bin/git remote add origin https://github.com/nf-core/ops +2025-08-21T21:53:15.6118726Z ##[endgroup] +2025-08-21T21:53:15.6119718Z ##[group]Disabling automatic garbage collection +2025-08-21T21:53:15.6125222Z [command]/usr/bin/git config --local gc.auto 0 +2025-08-21T21:53:15.6154642Z ##[endgroup] +2025-08-21T21:53:15.6155516Z ##[group]Setting up auth +2025-08-21T21:53:15.6162877Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand +2025-08-21T21:53:15.6192666Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2025-08-21T21:53:15.9975395Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2025-08-21T21:53:16.0012533Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" +2025-08-21T21:53:16.0268745Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** +2025-08-21T21:53:16.0306740Z ##[endgroup] +2025-08-21T21:53:16.0307388Z ##[group]Fetching the repository +2025-08-21T21:53:16.0319021Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +a3fbc0753bcb13550a719241cae24166f23df11e:refs/remotes/pull/173/merge +2025-08-21T21:53:16.8283619Z From https://github.com/nf-core/ops +2025-08-21T21:53:16.8284337Z * [new ref] a3fbc0753bcb13550a719241cae24166f23df11e -> pull/173/merge +2025-08-21T21:53:16.8520968Z ##[endgroup] +2025-08-21T21:53:16.8521688Z ##[group]Determining the checkout info +2025-08-21T21:53:16.8523900Z ##[endgroup] +2025-08-21T21:53:16.8529404Z [command]/usr/bin/git sparse-checkout disable +2025-08-21T21:53:16.8950916Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig +2025-08-21T21:53:16.8978683Z ##[group]Checking out the ref +2025-08-21T21:53:16.8983387Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/173/merge +2025-08-21T21:53:16.9107409Z Note: switching to 'refs/remotes/pull/173/merge'. +2025-08-21T21:53:16.9107930Z +2025-08-21T21:53:16.9108331Z You are in 'detached HEAD' state. You can look around, make experimental +2025-08-21T21:53:16.9109400Z changes and commit them, and you can discard any commits you make in this +2025-08-21T21:53:16.9110400Z state without impacting any branches by switching back to a branch. +2025-08-21T21:53:16.9110987Z +2025-08-21T21:53:16.9111390Z If you want to create a new branch to retain commits you create, you may +2025-08-21T21:53:16.9112237Z do so (now or later) by using -c with the switch command. Example: +2025-08-21T21:53:16.9112745Z +2025-08-21T21:53:16.9112944Z git switch -c +2025-08-21T21:53:16.9113288Z +2025-08-21T21:53:16.9113459Z Or undo this operation with: +2025-08-21T21:53:16.9113657Z +2025-08-21T21:53:16.9113762Z git switch - +2025-08-21T21:53:16.9113933Z +2025-08-21T21:53:16.9114201Z Turn off this advice by setting config variable advice.detachedHead to false +2025-08-21T21:53:16.9115205Z +2025-08-21T21:53:16.9115854Z HEAD is now at a3fbc07 Merge 78592a768a89d35789c9d6eb7971aa1d60cc518c into deea2c06f708f4ed3ddaf94edc44a2aa15faee93 +2025-08-21T21:53:16.9117783Z ##[endgroup] +2025-08-21T21:53:16.9156646Z [command]/usr/bin/git log -1 --format=%H +2025-08-21T21:53:16.9179981Z a3fbc0753bcb13550a719241cae24166f23df11e +2025-08-21T21:53:16.9401123Z ##[group]Run aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 +2025-08-21T21:53:16.9401590Z with: +2025-08-21T21:53:16.9401905Z aws-access-key-id: *** +2025-08-21T21:53:16.9402229Z aws-secret-access-key: *** +2025-08-21T21:53:16.9402500Z aws-region: eu-west-1 +2025-08-21T21:53:16.9402719Z audience: sts.amazonaws.com +2025-08-21T21:53:16.9402932Z env: +2025-08-21T21:53:16.9403124Z AWS_REGION: eu-west-1 +2025-08-21T21:53:16.9403344Z S3_BUCKET: nf-core-awsmegatests +2025-08-21T21:53:16.9403573Z ##[endgroup] +2025-08-21T21:53:17.6460759Z Proceeding with IAM user credentials +2025-08-21T21:53:17.6586964Z ##[group]Run astral-sh/setup-uv@v6 +2025-08-21T21:53:17.6587230Z with: +2025-08-21T21:53:17.6587412Z activate-environment: false +2025-08-21T21:53:17.6587678Z working-directory: /home/runner/work/ops/ops +2025-08-21T21:53:17.6587972Z server-url: https://github.com +2025-08-21T21:53:17.6588332Z github-token: *** +2025-08-21T21:53:17.6588540Z enable-cache: auto +2025-08-21T21:53:17.6589034Z cache-dependency-glob: **/*requirements*.txt +**/*requirements*.in +**/*constraints*.txt +**/*constraints*.in +**/pyproject.toml +**/uv.lock + +2025-08-21T21:53:17.6589557Z prune-cache: true +2025-08-21T21:53:17.6589764Z ignore-nothing-to-cache: false +2025-08-21T21:53:17.6590022Z ignore-empty-workdir: false +2025-08-21T21:53:17.6590264Z add-problem-matchers: true +2025-08-21T21:53:17.6590472Z env: +2025-08-21T21:53:17.6590643Z AWS_REGION: eu-west-1 +2025-08-21T21:53:17.6590859Z S3_BUCKET: nf-core-awsmegatests +2025-08-21T21:53:17.6591095Z AWS_DEFAULT_REGION: eu-west-1 +2025-08-21T21:53:17.6591384Z AWS_ACCESS_KEY_ID: *** +2025-08-21T21:53:17.6591699Z AWS_SECRET_ACCESS_KEY: *** +2025-08-21T21:53:17.6591906Z ##[endgroup] +2025-08-21T21:53:17.8911473Z Trying to find version for uv in: /home/runner/work/ops/ops/uv.toml +2025-08-21T21:53:17.8912250Z Could not find file: /home/runner/work/ops/ops/uv.toml +2025-08-21T21:53:17.8912985Z Trying to find version for uv in: /home/runner/work/ops/ops/pyproject.toml +2025-08-21T21:53:17.8927166Z Could not determine uv version from uv.toml or pyproject.toml. Falling back to latest. +2025-08-21T21:53:17.8928814Z Getting latest version from GitHub API... +2025-08-21T21:53:18.2377095Z manifest-file not provided, reading from local file. +2025-08-21T21:53:18.2437915Z manifest-file does not contain version 0.8.13, arch x86_64, platform unknown-linux-gnu. Falling back to GitHub releases. +2025-08-21T21:53:18.2439338Z Downloading uv from "https://github.com/astral-sh/uv/releases/download/0.8.13/uv-x86_64-unknown-linux-gnu.tar.gz" ... +2025-08-21T21:53:19.0468501Z [command]/usr/bin/tar xz --warning=no-unknown-keyword --overwrite -C /home/runner/work/_temp/f0782c2d-c923-45c2-86d1-c7692d0905dd -f /home/runner/work/_temp/cd49c75a-2255-4cbf-94a8-65abe46657e5 +2025-08-21T21:53:19.4283173Z Added /home/runner/.local/bin to the path +2025-08-21T21:53:19.4286708Z Added /opt/hostedtoolcache/uv/0.8.13/x86_64 to the path +2025-08-21T21:53:19.4313634Z Set UV_CACHE_DIR to /home/runner/work/_temp/setup-uv-cache +2025-08-21T21:53:19.4314268Z Successfully installed uv version 0.8.13 +2025-08-21T21:53:19.4316628Z Searching files using cache dependency glob: /home/runner/work/ops/ops/**/*requirements*.txt,/home/runner/work/ops/ops/**/*requirements*.in,/home/runner/work/ops/ops/**/*constraints*.txt,/home/runner/work/ops/ops/**/*constraints*.in,/home/runner/work/ops/ops/**/pyproject.toml,/home/runner/work/ops/ops/**/uv.lock +2025-08-21T21:53:19.4470050Z /home/runner/work/ops/ops/pulumi/AWSMegatests/pyproject.toml +2025-08-21T21:53:19.4492268Z /home/runner/work/ops/ops/pulumi/AWSMegatests/scripts/requirements.txt +2025-08-21T21:53:19.4576154Z /home/runner/work/ops/ops/pulumi/AWSMegatests/uv.lock +2025-08-21T21:53:19.4593426Z /home/runner/work/ops/ops/pulumi/github/teams/pyproject.toml +2025-08-21T21:53:19.4600412Z /home/runner/work/ops/ops/pulumi/github/teams/requirements.txt +2025-08-21T21:53:19.4607877Z /home/runner/work/ops/ops/pulumi/github/teams/uv.lock +2025-08-21T21:53:19.4624135Z /home/runner/work/ops/ops/pulumi/repo_backups/pyproject.toml +2025-08-21T21:53:19.4631579Z /home/runner/work/ops/ops/pulumi/repo_backups/requirements.txt +2025-08-21T21:53:19.4638906Z /home/runner/work/ops/ops/pulumi/repo_backups/uv.lock +2025-08-21T21:53:19.4655337Z /home/runner/work/ops/ops/pulumi/sentieon_license_server/pyproject.toml +2025-08-21T21:53:19.4661731Z /home/runner/work/ops/ops/pulumi/sentieon_license_server/requirements.txt +2025-08-21T21:53:19.4668320Z /home/runner/work/ops/ops/pulumi/sentieon_license_server/uv.lock +2025-08-21T21:53:19.4682307Z /home/runner/work/ops/ops/pulumi/test_datasets/pyproject.toml +2025-08-21T21:53:19.4688509Z /home/runner/work/ops/ops/pulumi/test_datasets/uv.lock +2025-08-21T21:53:19.4695922Z /home/runner/work/ops/ops/pyproject.toml +2025-08-21T21:53:19.4701112Z Found 15 files to hash. +2025-08-21T21:53:19.5357227Z Trying to restore uv cache from GitHub Actions cache with key: setup-uv-1-x86_64-unknown-linux-gnu-3.12.3-pruned-7cff7c076ea5c3def548937b727987242f1934b35588912bbe4829317bbb3383 +2025-08-21T21:53:19.7835512Z Cache hit for: setup-uv-1-x86_64-unknown-linux-gnu-3.12.3-pruned-7cff7c076ea5c3def548937b727987242f1934b35588912bbe4829317bbb3383 +2025-08-21T21:53:20.9298218Z Received 1130990 of 1130990 (100.0%), 1.4 MBs/sec +2025-08-21T21:53:20.9298885Z Cache Size: ~1 MB (1130990 B) +2025-08-21T21:53:20.9323778Z [command]/usr/bin/tar -xf /home/runner/work/_temp/f850fa9d-3bea-4e0a-9cad-9710cb917b5a/cache.tzst -P -C /home/runner/work/ops/ops --use-compress-program unzstd +2025-08-21T21:53:20.9861447Z Cache restored successfully +2025-08-21T21:53:20.9869379Z uv cache restored from GitHub Actions cache with key: setup-uv-1-x86_64-unknown-linux-gnu-3.12.3-pruned-7cff7c076ea5c3def548937b727987242f1934b35588912bbe4829317bbb3383 +2025-08-21T21:53:21.0003182Z ##[group]Run uv python install 3.13 +2025-08-21T21:53:21.0003527Z uv python install 3.13 +2025-08-21T21:53:21.0145874Z shell: /usr/bin/bash -e {0} +2025-08-21T21:53:21.0146155Z env: +2025-08-21T21:53:21.0146371Z AWS_REGION: eu-west-1 +2025-08-21T21:53:21.0146641Z S3_BUCKET: nf-core-awsmegatests +2025-08-21T21:53:21.0146936Z AWS_DEFAULT_REGION: eu-west-1 +2025-08-21T21:53:21.0147324Z AWS_ACCESS_KEY_ID: *** +2025-08-21T21:53:21.0147695Z AWS_SECRET_ACCESS_KEY: *** +2025-08-21T21:53:21.0148020Z UV_CACHE_DIR: /home/runner/work/_temp/setup-uv-cache +2025-08-21T21:53:21.0148368Z ##[endgroup] +2025-08-21T21:53:21.4117607Z Downloading cpython-3.13.7-linux-x86_64-gnu (download) (30.9MiB) +2025-08-21T21:53:22.8481114Z Downloading cpython-3.13.7-linux-x86_64-gnu (download) +2025-08-21T21:53:22.8522523Z Installed Python 3.13.7 in 1.82s +2025-08-21T21:53:22.8523192Z + cpython-3.13.7-linux-x86_64-gnu (python3.13) +2025-08-21T21:53:22.8600181Z ##[group]Run # Convert GitHub inputs to script arguments +2025-08-21T21:53:22.8600646Z # Convert GitHub inputs to script arguments +2025-08-21T21:53:22.8601471Z ARGS="--bucket nf-core-awsmegatests --github-token ***" +2025-08-21T21:53:22.8601808Z  +2025-08-21T21:53:22.8602059Z # Force dry-run mode for PR events (safety measure) +2025-08-21T21:53:22.8602405Z if [ "pull_request" = "pull_request" ]; then +2025-08-21T21:53:22.8602804Z  echo "šŸ”’ Pull request detected - forcing dry-run mode for safety" +2025-08-21T21:53:22.8603179Z  # Don't add --live flag for PRs +2025-08-21T21:53:22.8603433Z else +2025-08-21T21:53:22.8603652Z  # Handle dry run mode for other events +2025-08-21T21:53:22.8603937Z  if [ "true" = "false" ]; then +2025-08-21T21:53:22.8604193Z  ARGS="$ARGS --live" +2025-08-21T21:53:22.8604419Z  fi +2025-08-21T21:53:22.8604593Z fi +2025-08-21T21:53:22.8605242Z  +2025-08-21T21:53:22.8605475Z # Handle deletion enable (disabled for PRs) +2025-08-21T21:53:22.8605849Z if [ "pull_request" != "pull_request" ] && [ "false" = "true" ]; then +2025-08-21T21:53:22.8606209Z  ARGS="$ARGS --enable-deletion" +2025-08-21T21:53:22.8606462Z fi +2025-08-21T21:53:22.8606631Z  +2025-08-21T21:53:22.8606863Z # Run the Python script with uv and capture output +2025-08-21T21:53:22.8607230Z echo "šŸš€ Running S3 results tagger with args: $ARGS" +2025-08-21T21:53:22.8607682Z uv run .github/s3_results_tagger.py $ARGS | tee s3_tagging_output.log +2025-08-21T21:53:22.8647736Z shell: /usr/bin/bash -e {0} +2025-08-21T21:53:22.8647982Z env: +2025-08-21T21:53:22.8648170Z AWS_REGION: eu-west-1 +2025-08-21T21:53:22.8648401Z S3_BUCKET: nf-core-awsmegatests +2025-08-21T21:53:22.8648651Z AWS_DEFAULT_REGION: eu-west-1 +2025-08-21T21:53:22.8648961Z AWS_ACCESS_KEY_ID: *** +2025-08-21T21:53:22.8649342Z AWS_SECRET_ACCESS_KEY: *** +2025-08-21T21:53:22.8649625Z UV_CACHE_DIR: /home/runner/work/_temp/setup-uv-cache +2025-08-21T21:53:22.8649915Z ##[endgroup] +2025-08-21T21:53:22.8708268Z šŸ”’ Pull request detected - forcing dry-run mode for safety +2025-08-21T21:53:22.8709105Z šŸš€ Running S3 results tagger with args: --bucket nf-core-awsmegatests --github-token *** +2025-08-21T21:53:23.1990403Z Downloading botocore (13.4MiB) +2025-08-21T21:53:23.5073853Z Downloading botocore +2025-08-21T21:53:23.5762768Z Installed 11 packages in 68ms +2025-08-21T21:53:24.3935645Z 2025-08-21 21:53:24,393 - INFO - Starting S3 results tagging job +2025-08-21T21:53:24.3936340Z 2025-08-21 21:53:24,393 - INFO - Bucket: nf-core-awsmegatests +2025-08-21T21:53:24.3936804Z 2025-08-21 21:53:24,393 - INFO - Dry run mode: True +2025-08-21T21:53:24.3937258Z 2025-08-21 21:53:24,393 - INFO - Deletion enabled: False +2025-08-21T21:53:24.3937801Z 2025-08-21 21:53:24,393 - INFO - Fetching nf-core pipeline data from GitHub API +2025-08-21T21:53:24.3938428Z 2025-08-21 21:53:24,393 - INFO - Using GitHub token for authentication +2025-08-21T21:53:24.3938980Z 2025-08-21 21:53:24,393 - INFO - Fetching nf-core repositories page 1 +2025-08-21T21:53:25.8836023Z 2025-08-21 21:53:25,883 - INFO - Fetching nf-core repositories page 2 +2025-08-21T21:53:26.9976441Z 2025-08-21 21:53:26,997 - INFO - Fetching nf-core repositories page 3 +2025-08-21T21:53:27.2832747Z 2025-08-21 21:53:27,283 - INFO - Found 151 active nf-core repositories +2025-08-21T21:57:31.1066027Z 2025-08-21 21:57:31,106 - INFO - Found 628 current release results directories +2025-08-21T21:57:31.1160813Z 2025-08-21 21:57:31,115 - INFO - Found credentials in environment variables. +2025-08-21T21:57:31.2682492Z 2025-08-21 21:57:31,267 - INFO - Scanning S3 bucket nf-core-awsmegatests for results directories +2025-08-21T21:57:44.9546322Z 2025-08-21 21:57:44,954 - INFO - Found 768 results directories in S3 +2025-08-21T21:57:44.9594039Z 2025-08-21 21:57:44,959 - INFO - Starting tagging analysis... +2025-08-21T21:57:44.9595535Z 2025-08-21 21:57:44,959 - INFO - Processing: airrflow/results-58fc5ad9dd91377d514831061a43f36b2c94334b +2025-08-21T21:57:44.9598019Z /home/runner/work/ops/ops/.github/s3_results_tagger.py:419: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC). +2025-08-21T21:57:44.9599788Z "tagged_date": datetime.utcnow().isoformat(), +2025-08-21T21:57:44.9601428Z 2025-08-21 21:57:44,959 - INFO - DRY RUN: Would tag objects in airrflow/results-58fc5ad9dd91377d514831061a43f36b2c94334b with {'pipeline': 'airrflow', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.959539', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9603771Z 2025-08-21 21:57:44,959 - WARNING - šŸ—‘ļø Tagged orphaned directory: airrflow/results-58fc5ad9dd91377d514831061a43f36b2c94334b +2025-08-21T21:57:44.9604880Z 2025-08-21 21:57:44,959 - INFO - Processing: circdna/results-cce84734ef507c7ab039bdbc498ff31679a32fb4 +2025-08-21T21:57:44.9607255Z /home/runner/work/ops/ops/.github/s3_results_tagger.py:392: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC). +2025-08-21T21:57:44.9608964Z "tagged_date": datetime.utcnow().isoformat(), +2025-08-21T21:57:44.9610821Z 2025-08-21 21:57:44,959 - INFO - DRY RUN: Would tag objects in circdna/results-cce84734ef507c7ab039bdbc498ff31679a32fb4 with {'pipeline': 'circdna', 'release': '1.0.2', 'sha': 'cce84734ef507c7ab039bdbc498ff31679a32fb4', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.959705', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9613120Z 2025-08-21 21:57:44,959 - INFO - āœ… Tagged current release: circdna/results-cce84734ef507c7ab039bdbc498ff31679a32fb4 +2025-08-21T21:57:44.9614149Z 2025-08-21 21:57:44,959 - INFO - Processing: sarek/results-c081571d72a49f8295f8bf8fdb08cbf60a2d5ea6 +2025-08-21T21:57:44.9616100Z 2025-08-21 21:57:44,959 - INFO - DRY RUN: Would tag objects in sarek/results-c081571d72a49f8295f8bf8fdb08cbf60a2d5ea6 with {'pipeline': 'sarek', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.959818', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9618148Z 2025-08-21 21:57:44,959 - WARNING - šŸ—‘ļø Tagged orphaned directory: sarek/results-c081571d72a49f8295f8bf8fdb08cbf60a2d5ea6 +2025-08-21T21:57:44.9619228Z 2025-08-21 21:57:44,959 - INFO - Processing: nanostring/results-e765843c16d2bfe90c72e31a7a3719466d1bdfb0 +2025-08-21T21:57:44.9621355Z 2025-08-21 21:57:44,959 - INFO - DRY RUN: Would tag objects in nanostring/results-e765843c16d2bfe90c72e31a7a3719466d1bdfb0 with {'pipeline': 'nanostring', 'release': '1.3.0', 'sha': 'e765843c16d2bfe90c72e31a7a3719466d1bdfb0', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.959911', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9623687Z 2025-08-21 21:57:44,959 - INFO - āœ… Tagged current release: nanostring/results-e765843c16d2bfe90c72e31a7a3719466d1bdfb0 +2025-08-21T21:57:44.9624609Z 2025-08-21 21:57:44,959 - INFO - Processing: pathogensurveillance/results-dev +2025-08-21T21:57:44.9626359Z 2025-08-21 21:57:44,960 - INFO - DRY RUN: Would tag objects in pathogensurveillance/results-dev with {'pipeline': 'pathogensurveillance', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.959996', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9628198Z 2025-08-21 21:57:44,960 - WARNING - šŸ—‘ļø Tagged orphaned directory: pathogensurveillance/results-dev +2025-08-21T21:57:44.9629140Z 2025-08-21 21:57:44,960 - INFO - Processing: nanoseq/results-ad5b2bb7a37a6edb9f61603636bd26e43259f58b +2025-08-21T21:57:44.9631386Z 2025-08-21 21:57:44,960 - INFO - DRY RUN: Would tag objects in nanoseq/results-ad5b2bb7a37a6edb9f61603636bd26e43259f58b with {'pipeline': 'nanoseq', 'release': '1.1.0', 'sha': 'ad5b2bb7a37a6edb9f61603636bd26e43259f58b', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.960072', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9633691Z 2025-08-21 21:57:44,960 - INFO - āœ… Tagged current release: nanoseq/results-ad5b2bb7a37a6edb9f61603636bd26e43259f58b +2025-08-21T21:57:44.9634817Z 2025-08-21 21:57:44,960 - INFO - Processing: differentialabundance/results-3dd360fed0dca1780db1bdf5dce85e5258fa2253 +2025-08-21T21:57:44.9637342Z 2025-08-21 21:57:44,960 - INFO - DRY RUN: Would tag objects in differentialabundance/results-3dd360fed0dca1780db1bdf5dce85e5258fa2253 with {'pipeline': 'differentialabundance', 'release': '1.5.0', 'sha': '3dd360fed0dca1780db1bdf5dce85e5258fa2253', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.960144', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9639962Z 2025-08-21 21:57:44,960 - INFO - āœ… Tagged current release: differentialabundance/results-3dd360fed0dca1780db1bdf5dce85e5258fa2253 +2025-08-21T21:57:44.9641157Z 2025-08-21 21:57:44,960 - INFO - Processing: genomeassembler/results-6a119be1f71e796cd9b8873eee7ff5a0edd5d1d0 +2025-08-21T21:57:44.9643289Z 2025-08-21 21:57:44,960 - INFO - DRY RUN: Would tag objects in genomeassembler/results-6a119be1f71e796cd9b8873eee7ff5a0edd5d1d0 with {'pipeline': 'genomeassembler', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.960239', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9645772Z 2025-08-21 21:57:44,960 - WARNING - šŸ—‘ļø Tagged orphaned directory: genomeassembler/results-6a119be1f71e796cd9b8873eee7ff5a0edd5d1d0 +2025-08-21T21:57:44.9646890Z 2025-08-21 21:57:44,960 - INFO - Processing: rnaseq/results-14f9d26444e08da7b51ddcb1b8c4e0703edde375 +2025-08-21T21:57:44.9648934Z 2025-08-21 21:57:44,960 - INFO - DRY RUN: Would tag objects in rnaseq/results-14f9d26444e08da7b51ddcb1b8c4e0703edde375 with {'pipeline': 'rnaseq', 'release': '3.13.0', 'sha': '14f9d26444e08da7b51ddcb1b8c4e0703edde375', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.960338', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9651196Z 2025-08-21 21:57:44,960 - INFO - āœ… Tagged current release: rnaseq/results-14f9d26444e08da7b51ddcb1b8c4e0703edde375 +2025-08-21T21:57:44.9652035Z 2025-08-21 21:57:44,960 - INFO - Processing: nascent/results-dev +2025-08-21T21:57:44.9653393Z 2025-08-21 21:57:44,960 - INFO - DRY RUN: Would tag objects in nascent/results-dev with {'pipeline': 'nascent', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.960430', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9654952Z 2025-08-21 21:57:44,960 - WARNING - šŸ—‘ļø Tagged orphaned directory: nascent/results-dev +2025-08-21T21:57:44.9655985Z 2025-08-21 21:57:44,960 - INFO - Processing: airrflow/results-1c6816c089988cc3c4048c50db6bc28592bdba9d +2025-08-21T21:57:44.9657806Z 2025-08-21 21:57:44,960 - INFO - DRY RUN: Would tag objects in airrflow/results-1c6816c089988cc3c4048c50db6bc28592bdba9d with {'pipeline': 'airrflow', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.960544', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9659893Z 2025-08-21 21:57:44,960 - WARNING - šŸ—‘ļø Tagged orphaned directory: airrflow/results-1c6816c089988cc3c4048c50db6bc28592bdba9d +2025-08-21T21:57:44.9660984Z 2025-08-21 21:57:44,960 - INFO - Processing: demultiplex/results-ea061789470b19b04d39c7775bc55634ff60b38e +2025-08-21T21:57:44.9663108Z 2025-08-21 21:57:44,960 - INFO - DRY RUN: Would tag objects in demultiplex/results-ea061789470b19b04d39c7775bc55634ff60b38e with {'pipeline': 'demultiplex', 'release': '1.5.4', 'sha': 'ea061789470b19b04d39c7775bc55634ff60b38e', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.960641', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9665556Z 2025-08-21 21:57:44,960 - INFO - āœ… Tagged current release: demultiplex/results-ea061789470b19b04d39c7775bc55634ff60b38e +2025-08-21T21:57:44.9666609Z 2025-08-21 21:57:44,960 - INFO - Processing: pixelator/results-511dd17fc4bf61e773584b879afde194f14fbdf2 +2025-08-21T21:57:44.9668887Z 2025-08-21 21:57:44,960 - INFO - DRY RUN: Would tag objects in pixelator/results-511dd17fc4bf61e773584b879afde194f14fbdf2 with {'pipeline': 'pixelator', 'release': '1.3.1', 'sha': '511dd17fc4bf61e773584b879afde194f14fbdf2', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.960733', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9671217Z 2025-08-21 21:57:44,960 - INFO - āœ… Tagged current release: pixelator/results-511dd17fc4bf61e773584b879afde194f14fbdf2 +2025-08-21T21:57:44.9672269Z 2025-08-21 21:57:44,960 - INFO - Processing: fastquorum/results-6d6395110984ff658748a4ee827fbe0d5cdb7530 +2025-08-21T21:57:44.9674366Z 2025-08-21 21:57:44,960 - INFO - DRY RUN: Would tag objects in fastquorum/results-6d6395110984ff658748a4ee827fbe0d5cdb7530 with {'pipeline': 'fastquorum', 'release': '1.0.1', 'sha': '6d6395110984ff658748a4ee827fbe0d5cdb7530', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.960828', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9676818Z 2025-08-21 21:57:44,960 - INFO - āœ… Tagged current release: fastquorum/results-6d6395110984ff658748a4ee827fbe0d5cdb7530 +2025-08-21T21:57:44.9678056Z 2025-08-21 21:57:44,960 - INFO - Processing: rnafusion/results-d4de338fc709199e6bec6cde8abfb545d560ed75 +2025-08-21T21:57:44.9680174Z 2025-08-21 21:57:44,960 - INFO - DRY RUN: Would tag objects in rnafusion/results-d4de338fc709199e6bec6cde8abfb545d560ed75 with {'pipeline': 'rnafusion', 'release': '2.3.3', 'sha': 'd4de338fc709199e6bec6cde8abfb545d560ed75', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.960920', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9682496Z 2025-08-21 21:57:44,960 - INFO - āœ… Tagged current release: rnafusion/results-d4de338fc709199e6bec6cde8abfb545d560ed75 +2025-08-21T21:57:44.9683539Z 2025-08-21 21:57:44,960 - INFO - Processing: fastquorum/results-ea307015cf134358883d48fcd7a86b365a0a8bb2 +2025-08-21T21:57:44.9685782Z 2025-08-21 21:57:44,961 - INFO - DRY RUN: Would tag objects in fastquorum/results-ea307015cf134358883d48fcd7a86b365a0a8bb2 with {'pipeline': 'fastquorum', 'release': '1.0.0', 'sha': 'ea307015cf134358883d48fcd7a86b365a0a8bb2', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.961011', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9688116Z 2025-08-21 21:57:44,961 - INFO - āœ… Tagged current release: fastquorum/results-ea307015cf134358883d48fcd7a86b365a0a8bb2 +2025-08-21T21:57:44.9689117Z 2025-08-21 21:57:44,961 - INFO - Processing: hic/results-fe4ac656317d24c37e81e7940a526ed9ea812f8e +2025-08-21T21:57:44.9691149Z 2025-08-21 21:57:44,961 - INFO - DRY RUN: Would tag objects in hic/results-fe4ac656317d24c37e81e7940a526ed9ea812f8e with {'pipeline': 'hic', 'release': '2.1.0', 'sha': 'fe4ac656317d24c37e81e7940a526ed9ea812f8e', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.961099', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9693312Z 2025-08-21 21:57:44,961 - INFO - āœ… Tagged current release: hic/results-fe4ac656317d24c37e81e7940a526ed9ea812f8e +2025-08-21T21:57:44.9694403Z 2025-08-21 21:57:44,961 - INFO - Processing: methylseq/results-a79d8519e9999aa87f301cdc601fe43f19a77442-bwameth-GPU +2025-08-21T21:57:44.9696560Z 2025-08-21 21:57:44,961 - INFO - DRY RUN: Would tag objects in methylseq/results-a79d8519e9999aa87f301cdc601fe43f19a77442-bwameth-GPU with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.961188', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9698851Z 2025-08-21 21:57:44,961 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-a79d8519e9999aa87f301cdc601fe43f19a77442-bwameth-GPU +2025-08-21T21:57:44.9700006Z 2025-08-21 21:57:44,961 - INFO - Processing: clipseq/results-45ae3c0b9b16206b687f4a645e1643c85b3f1ab4 +2025-08-21T21:57:44.9702047Z 2025-08-21 21:57:44,961 - INFO - DRY RUN: Would tag objects in clipseq/results-45ae3c0b9b16206b687f4a645e1643c85b3f1ab4 with {'pipeline': 'clipseq', 'release': '1.0.0', 'sha': '45ae3c0b9b16206b687f4a645e1643c85b3f1ab4', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.961283', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9704451Z 2025-08-21 21:57:44,961 - INFO - āœ… Tagged current release: clipseq/results-45ae3c0b9b16206b687f4a645e1643c85b3f1ab4 +2025-08-21T21:57:44.9705642Z 2025-08-21 21:57:44,961 - INFO - Processing: bamtofastq/results-38fdb8becade1ac67dc733da62ddec0f188998dc +2025-08-21T21:57:44.9707794Z 2025-08-21 21:57:44,961 - INFO - DRY RUN: Would tag objects in bamtofastq/results-38fdb8becade1ac67dc733da62ddec0f188998dc with {'pipeline': 'bamtofastq', 'release': '2.1.1', 'sha': '38fdb8becade1ac67dc733da62ddec0f188998dc', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.961374', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9710290Z 2025-08-21 21:57:44,961 - INFO - āœ… Tagged current release: bamtofastq/results-38fdb8becade1ac67dc733da62ddec0f188998dc +2025-08-21T21:57:44.9711500Z 2025-08-21 21:57:44,961 - INFO - Processing: methylseq/results-fd056660f7680072e86ef1d7bd0ac903a377c53e-bismark_hisat-CPU +2025-08-21T21:57:44.9713577Z 2025-08-21 21:57:44,961 - INFO - DRY RUN: Would tag objects in methylseq/results-fd056660f7680072e86ef1d7bd0ac903a377c53e-bismark_hisat-CPU with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.961463', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9716446Z 2025-08-21 21:57:44,961 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-fd056660f7680072e86ef1d7bd0ac903a377c53e-bismark_hisat-CPU +2025-08-21T21:57:44.9717633Z 2025-08-21 21:57:44,961 - INFO - Processing: mag/results-ffbd0831207b3c492d88e2c2610ed8b778bacd2a +2025-08-21T21:57:44.9719364Z 2025-08-21 21:57:44,961 - INFO - DRY RUN: Would tag objects in mag/results-ffbd0831207b3c492d88e2c2610ed8b778bacd2a with {'pipeline': 'mag', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.961576', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9721350Z 2025-08-21 21:57:44,961 - WARNING - šŸ—‘ļø Tagged orphaned directory: mag/results-ffbd0831207b3c492d88e2c2610ed8b778bacd2a +2025-08-21T21:57:44.9722238Z 2025-08-21 21:57:44,961 - INFO - Processing: pixelator/results-dev +2025-08-21T21:57:44.9723648Z 2025-08-21 21:57:44,961 - INFO - DRY RUN: Would tag objects in pixelator/results-dev with {'pipeline': 'pixelator', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.961671', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9725407Z 2025-08-21 21:57:44,961 - WARNING - šŸ—‘ļø Tagged orphaned directory: pixelator/results-dev +2025-08-21T21:57:44.9726310Z 2025-08-21 21:57:44,961 - INFO - Processing: rnasplice/results-1d0494ae3402d1a46e0adadad24f81a0ff855c77 +2025-08-21T21:57:44.9728436Z 2025-08-21 21:57:44,961 - INFO - DRY RUN: Would tag objects in rnasplice/results-1d0494ae3402d1a46e0adadad24f81a0ff855c77 with {'pipeline': 'rnasplice', 'release': '1.0.4', 'sha': '1d0494ae3402d1a46e0adadad24f81a0ff855c77', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.961765', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9730762Z 2025-08-21 21:57:44,961 - INFO - āœ… Tagged current release: rnasplice/results-1d0494ae3402d1a46e0adadad24f81a0ff855c77 +2025-08-21T21:57:44.9731779Z 2025-08-21 21:57:44,961 - INFO - Processing: sarek/results-502b6de340046466608930c599ff0b70044c288e +2025-08-21T21:57:44.9733510Z 2025-08-21 21:57:44,961 - INFO - DRY RUN: Would tag objects in sarek/results-502b6de340046466608930c599ff0b70044c288e with {'pipeline': 'sarek', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.961857', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9735439Z 2025-08-21 21:57:44,961 - WARNING - šŸ—‘ļø Tagged orphaned directory: sarek/results-502b6de340046466608930c599ff0b70044c288e +2025-08-21T21:57:44.9736104Z 2025-08-21 21:57:44,961 - INFO - Processing: epitopeprediction/results-37c08f05dcb0444a859b656545e1ed15c1ea95d1 +2025-08-21T21:57:44.9737744Z 2025-08-21 21:57:44,961 - INFO - DRY RUN: Would tag objects in epitopeprediction/results-37c08f05dcb0444a859b656545e1ed15c1ea95d1 with {'pipeline': 'epitopeprediction', 'release': '3.0.0', 'sha': '37c08f05dcb0444a859b656545e1ed15c1ea95d1', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.961953', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9739264Z 2025-08-21 21:57:44,961 - INFO - āœ… Tagged current release: epitopeprediction/results-37c08f05dcb0444a859b656545e1ed15c1ea95d1 +2025-08-21T21:57:44.9739882Z 2025-08-21 21:57:44,962 - INFO - Processing: mag/results-d4f00bc2d178c1c8dc25b576c9e77e70511d5d21 +2025-08-21T21:57:44.9741020Z 2025-08-21 21:57:44,962 - INFO - DRY RUN: Would tag objects in mag/results-d4f00bc2d178c1c8dc25b576c9e77e70511d5d21 with {'pipeline': 'mag', 'release': '2.1.0', 'sha': 'd4f00bc2d178c1c8dc25b576c9e77e70511d5d21', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.962043', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9742267Z 2025-08-21 21:57:44,962 - INFO - āœ… Tagged current release: mag/results-d4f00bc2d178c1c8dc25b576c9e77e70511d5d21 +2025-08-21T21:57:44.9742859Z 2025-08-21 21:57:44,962 - INFO - Processing: molkart/results-d33d298b06ad8b4463a635bf02bb9f4f351e724b +2025-08-21T21:57:44.9744204Z 2025-08-21 21:57:44,962 - INFO - DRY RUN: Would tag objects in molkart/results-d33d298b06ad8b4463a635bf02bb9f4f351e724b with {'pipeline': 'molkart', 'release': '1.1.0', 'sha': 'd33d298b06ad8b4463a635bf02bb9f4f351e724b', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.962132', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9745966Z 2025-08-21 21:57:44,962 - INFO - āœ… Tagged current release: molkart/results-d33d298b06ad8b4463a635bf02bb9f4f351e724b +2025-08-21T21:57:44.9747074Z 2025-08-21 21:57:44,962 - INFO - Processing: epitopeprediction/results-1afbbf19ed6adca477451a3c42e2e0ac0c75af28 +2025-08-21T21:57:44.9749399Z 2025-08-21 21:57:44,962 - INFO - DRY RUN: Would tag objects in epitopeprediction/results-1afbbf19ed6adca477451a3c42e2e0ac0c75af28 with {'pipeline': 'epitopeprediction', 'release': '2.0.0', 'sha': '1afbbf19ed6adca477451a3c42e2e0ac0c75af28', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.962221', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9751953Z 2025-08-21 21:57:44,962 - INFO - āœ… Tagged current release: epitopeprediction/results-1afbbf19ed6adca477451a3c42e2e0ac0c75af28 +2025-08-21T21:57:44.9753066Z 2025-08-21 21:57:44,962 - INFO - Processing: raredisease/results-1a664228169de771dd4e5957546f887a4f888653 +2025-08-21T21:57:44.9755316Z 2025-08-21 21:57:44,962 - INFO - DRY RUN: Would tag objects in raredisease/results-1a664228169de771dd4e5957546f887a4f888653 with {'pipeline': 'raredisease', 'release': '1.1.0', 'sha': '1a664228169de771dd4e5957546f887a4f888653', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.962309', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9757651Z 2025-08-21 21:57:44,962 - INFO - āœ… Tagged current release: raredisease/results-1a664228169de771dd4e5957546f887a4f888653 +2025-08-21T21:57:44.9758674Z 2025-08-21 21:57:44,962 - INFO - Processing: sarek/results-9f11b67e24bf5300bad86c293e7e4bf1646ced8e +2025-08-21T21:57:44.9760443Z 2025-08-21 21:57:44,962 - INFO - DRY RUN: Would tag objects in sarek/results-9f11b67e24bf5300bad86c293e7e4bf1646ced8e with {'pipeline': 'sarek', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.962397', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9762483Z 2025-08-21 21:57:44,962 - WARNING - šŸ—‘ļø Tagged orphaned directory: sarek/results-9f11b67e24bf5300bad86c293e7e4bf1646ced8e +2025-08-21T21:57:44.9763543Z 2025-08-21 21:57:44,962 - INFO - Processing: airrflow/results-df795baf77a9494af7be7ff74465f22437f5e681 +2025-08-21T21:57:44.9765494Z 2025-08-21 21:57:44,962 - INFO - DRY RUN: Would tag objects in airrflow/results-df795baf77a9494af7be7ff74465f22437f5e681 with {'pipeline': 'airrflow', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.962491', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9767589Z 2025-08-21 21:57:44,962 - WARNING - šŸ—‘ļø Tagged orphaned directory: airrflow/results-df795baf77a9494af7be7ff74465f22437f5e681 +2025-08-21T21:57:44.9768850Z 2025-08-21 21:57:44,962 - INFO - Processing: rnafusion/results-c45b22c1745ea2ecbd0c0dbde73e00920a4284b8 +2025-08-21T21:57:44.9770989Z 2025-08-21 21:57:44,962 - INFO - DRY RUN: Would tag objects in rnafusion/results-c45b22c1745ea2ecbd0c0dbde73e00920a4284b8 with {'pipeline': 'rnafusion', 'release': '2.3.0', 'sha': 'c45b22c1745ea2ecbd0c0dbde73e00920a4284b8', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.962605', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9773323Z 2025-08-21 21:57:44,962 - INFO - āœ… Tagged current release: rnafusion/results-c45b22c1745ea2ecbd0c0dbde73e00920a4284b8 +2025-08-21T21:57:44.9774349Z 2025-08-21 21:57:44,962 - INFO - Processing: isoseq/results-26153d74898361e5e08b80885f9f67c6a2c881c9 +2025-08-21T21:57:44.9776492Z 2025-08-21 21:57:44,962 - INFO - DRY RUN: Would tag objects in isoseq/results-26153d74898361e5e08b80885f9f67c6a2c881c9 with {'pipeline': 'isoseq', 'release': '1.1.3', 'sha': '26153d74898361e5e08b80885f9f67c6a2c881c9', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.962697', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9778892Z 2025-08-21 21:57:44,962 - INFO - āœ… Tagged current release: isoseq/results-26153d74898361e5e08b80885f9f67c6a2c881c9 +2025-08-21T21:57:44.9779950Z 2025-08-21 21:57:44,962 - INFO - Processing: genomeassembler/results-f49ba50d8a9ad133bc85155198302b3c463fc11b +2025-08-21T21:57:44.9781923Z 2025-08-21 21:57:44,962 - INFO - DRY RUN: Would tag objects in genomeassembler/results-f49ba50d8a9ad133bc85155198302b3c463fc11b with {'pipeline': 'genomeassembler', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.962787', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9784171Z 2025-08-21 21:57:44,962 - WARNING - šŸ—‘ļø Tagged orphaned directory: genomeassembler/results-f49ba50d8a9ad133bc85155198302b3c463fc11b +2025-08-21T21:57:44.9785532Z 2025-08-21 21:57:44,962 - INFO - Processing: methylseq/results-a79d8519e9999aa87f301cdc601fe43f19a77442-bismark-CPU +2025-08-21T21:57:44.9787543Z 2025-08-21 21:57:44,962 - INFO - DRY RUN: Would tag objects in methylseq/results-a79d8519e9999aa87f301cdc601fe43f19a77442-bismark-CPU with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.962882', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9789849Z 2025-08-21 21:57:44,962 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-a79d8519e9999aa87f301cdc601fe43f19a77442-bismark-CPU +2025-08-21T21:57:44.9791007Z 2025-08-21 21:57:44,962 - INFO - Processing: ampliseq/results-3f2f46600838809a318f42ca969c8c0e589e30ee +2025-08-21T21:57:44.9792816Z 2025-08-21 21:57:44,962 - INFO - DRY RUN: Would tag objects in ampliseq/results-3f2f46600838809a318f42ca969c8c0e589e30ee with {'pipeline': 'ampliseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.962975', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9794888Z 2025-08-21 21:57:44,963 - WARNING - šŸ—‘ļø Tagged orphaned directory: ampliseq/results-3f2f46600838809a318f42ca969c8c0e589e30ee +2025-08-21T21:57:44.9796102Z 2025-08-21 21:57:44,963 - INFO - Processing: airrflow/results-2744dbe9edb84662fccd3fc2f6cfa0997200371b +2025-08-21T21:57:44.9797939Z 2025-08-21 21:57:44,963 - INFO - DRY RUN: Would tag objects in airrflow/results-2744dbe9edb84662fccd3fc2f6cfa0997200371b with {'pipeline': 'airrflow', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.963067', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9800043Z 2025-08-21 21:57:44,963 - WARNING - šŸ—‘ļø Tagged orphaned directory: airrflow/results-2744dbe9edb84662fccd3fc2f6cfa0997200371b +2025-08-21T21:57:44.9801148Z 2025-08-21 21:57:44,963 - INFO - Processing: pangenome/results-f2b63fe835463e71f2fc2ccb7261f1a0c1d430a4 +2025-08-21T21:57:44.9803018Z 2025-08-21 21:57:44,963 - INFO - DRY RUN: Would tag objects in pangenome/results-f2b63fe835463e71f2fc2ccb7261f1a0c1d430a4 with {'pipeline': 'pangenome', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.963158', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9805425Z 2025-08-21 21:57:44,963 - WARNING - šŸ—‘ļø Tagged orphaned directory: pangenome/results-f2b63fe835463e71f2fc2ccb7261f1a0c1d430a4 +2025-08-21T21:57:44.9806662Z 2025-08-21 21:57:44,963 - INFO - Processing: methylseq/results-335f2a865a07a4b1b084830149412e404a736db2-bismark_hisat-CPU +2025-08-21T21:57:44.9808724Z 2025-08-21 21:57:44,963 - INFO - DRY RUN: Would tag objects in methylseq/results-335f2a865a07a4b1b084830149412e404a736db2-bismark_hisat-CPU with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.963248', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9811084Z 2025-08-21 21:57:44,963 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-335f2a865a07a4b1b084830149412e404a736db2-bismark_hisat-CPU +2025-08-21T21:57:44.9812267Z 2025-08-21 21:57:44,963 - INFO - Processing: sarek/results-9342569f18e175743abcede97f174331a9211edc +2025-08-21T21:57:44.9814031Z 2025-08-21 21:57:44,963 - INFO - DRY RUN: Would tag objects in sarek/results-9342569f18e175743abcede97f174331a9211edc with {'pipeline': 'sarek', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.963337', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9816399Z 2025-08-21 21:57:44,963 - WARNING - šŸ—‘ļø Tagged orphaned directory: sarek/results-9342569f18e175743abcede97f174331a9211edc +2025-08-21T21:57:44.9817556Z 2025-08-21 21:57:44,963 - INFO - Processing: denovotranscript/results-test-b2ef239e8ececceb98fde37fd140d8291f434109 +2025-08-21T21:57:44.9819652Z 2025-08-21 21:57:44,963 - INFO - DRY RUN: Would tag objects in denovotranscript/results-test-b2ef239e8ececceb98fde37fd140d8291f434109 with {'pipeline': 'denovotranscript', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.963430', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9822033Z 2025-08-21 21:57:44,963 - WARNING - šŸ—‘ļø Tagged orphaned directory: denovotranscript/results-test-b2ef239e8ececceb98fde37fd140d8291f434109 +2025-08-21T21:57:44.9823293Z 2025-08-21 21:57:44,963 - INFO - Processing: epitopeprediction/results-1bd1df07058169d3965bdc5090a00e0e05050bcd +2025-08-21T21:57:44.9844722Z 2025-08-21 21:57:44,963 - INFO - DRY RUN: Would tag objects in epitopeprediction/results-1bd1df07058169d3965bdc5090a00e0e05050bcd with {'pipeline': 'epitopeprediction', 'release': '2.1.0', 'sha': '1bd1df07058169d3965bdc5090a00e0e05050bcd', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.963537', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9847579Z 2025-08-21 21:57:44,963 - INFO - āœ… Tagged current release: epitopeprediction/results-1bd1df07058169d3965bdc5090a00e0e05050bcd +2025-08-21T21:57:44.9848702Z 2025-08-21 21:57:44,963 - INFO - Processing: rnaseq/results-b3ff92bc54363faf17d820689a8e9074ffd99045 +2025-08-21T21:57:44.9850765Z 2025-08-21 21:57:44,963 - INFO - DRY RUN: Would tag objects in rnaseq/results-b3ff92bc54363faf17d820689a8e9074ffd99045 with {'pipeline': 'rnaseq', 'release': '3.2', 'sha': 'b3ff92bc54363faf17d820689a8e9074ffd99045', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.963626', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9853015Z 2025-08-21 21:57:44,963 - INFO - āœ… Tagged current release: rnaseq/results-b3ff92bc54363faf17d820689a8e9074ffd99045 +2025-08-21T21:57:44.9854133Z 2025-08-21 21:57:44,963 - INFO - Processing: differentialabundance/results-47e3d923bbf2311ace0b9dea12d756287798275e +2025-08-21T21:57:44.9856702Z 2025-08-21 21:57:44,963 - INFO - DRY RUN: Would tag objects in differentialabundance/results-47e3d923bbf2311ace0b9dea12d756287798275e with {'pipeline': 'differentialabundance', 'release': '1.1.1', 'sha': '47e3d923bbf2311ace0b9dea12d756287798275e', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.963715', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9859340Z 2025-08-21 21:57:44,963 - INFO - āœ… Tagged current release: differentialabundance/results-47e3d923bbf2311ace0b9dea12d756287798275e +2025-08-21T21:57:44.9860751Z 2025-08-21 21:57:44,963 - INFO - Processing: pairgenomealign/results-c493be3ba884299576f4f91c2064b1aa8c7aa8f6 +2025-08-21T21:57:44.9863035Z 2025-08-21 21:57:44,963 - INFO - DRY RUN: Would tag objects in pairgenomealign/results-c493be3ba884299576f4f91c2064b1aa8c7aa8f6 with {'pipeline': 'pairgenomealign', 'release': '1.0.0', 'sha': 'c493be3ba884299576f4f91c2064b1aa8c7aa8f6', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.963804', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9865663Z 2025-08-21 21:57:44,963 - INFO - āœ… Tagged current release: pairgenomealign/results-c493be3ba884299576f4f91c2064b1aa8c7aa8f6 +2025-08-21T21:57:44.9866776Z 2025-08-21 21:57:44,963 - INFO - Processing: taxprofiler/results-d1f82f3ab6d26a485d72300825edc28c7fdef791 +2025-08-21T21:57:44.9868928Z 2025-08-21 21:57:44,963 - INFO - DRY RUN: Would tag objects in taxprofiler/results-d1f82f3ab6d26a485d72300825edc28c7fdef791 with {'pipeline': 'taxprofiler', 'release': '1.1.0', 'sha': 'd1f82f3ab6d26a485d72300825edc28c7fdef791', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.963892', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9871504Z 2025-08-21 21:57:44,963 - INFO - āœ… Tagged current release: taxprofiler/results-d1f82f3ab6d26a485d72300825edc28c7fdef791 +2025-08-21T21:57:44.9872572Z 2025-08-21 21:57:44,963 - INFO - Processing: mhcquant/results-b80a5a4fbf1ff4d409885d08ab09f6ceeb7fe4c9 +2025-08-21T21:57:44.9874684Z 2025-08-21 21:57:44,963 - INFO - DRY RUN: Would tag objects in mhcquant/results-b80a5a4fbf1ff4d409885d08ab09f6ceeb7fe4c9 with {'pipeline': 'mhcquant', 'release': '2.5.0', 'sha': 'b80a5a4fbf1ff4d409885d08ab09f6ceeb7fe4c9', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.963981', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9877160Z 2025-08-21 21:57:44,964 - INFO - āœ… Tagged current release: mhcquant/results-b80a5a4fbf1ff4d409885d08ab09f6ceeb7fe4c9 +2025-08-21T21:57:44.9878194Z 2025-08-21 21:57:44,964 - INFO - Processing: smrnaseq/results-d1299b132a910d8adb38a5445d0c223051e14264 +2025-08-21T21:57:44.9880268Z 2025-08-21 21:57:44,964 - INFO - DRY RUN: Would tag objects in smrnaseq/results-d1299b132a910d8adb38a5445d0c223051e14264 with {'pipeline': 'smrnaseq', 'release': '2.0.0', 'sha': 'd1299b132a910d8adb38a5445d0c223051e14264', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.964070', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9882546Z 2025-08-21 21:57:44,964 - INFO - āœ… Tagged current release: smrnaseq/results-d1299b132a910d8adb38a5445d0c223051e14264 +2025-08-21T21:57:44.9883710Z 2025-08-21 21:57:44,964 - INFO - Processing: spatialtranscriptomics/results-test-064ac4e6dd2ca40167123fbab7f4c1958f219ad3 +2025-08-21T21:57:44.9886041Z 2025-08-21 21:57:44,964 - INFO - DRY RUN: Would tag objects in spatialtranscriptomics/results-test-064ac4e6dd2ca40167123fbab7f4c1958f219ad3 with {'pipeline': 'spatialtranscriptomics', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.964157', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9888562Z 2025-08-21 21:57:44,964 - WARNING - šŸ—‘ļø Tagged orphaned directory: spatialtranscriptomics/results-test-064ac4e6dd2ca40167123fbab7f4c1958f219ad3 +2025-08-21T21:57:44.9889830Z 2025-08-21 21:57:44,964 - INFO - Processing: metaboigniter/results-fca2ab5c508fc8179380ff747eab68b6db8aa93f +2025-08-21T21:57:44.9892034Z 2025-08-21 21:57:44,964 - INFO - DRY RUN: Would tag objects in metaboigniter/results-fca2ab5c508fc8179380ff747eab68b6db8aa93f with {'pipeline': 'metaboigniter', 'release': '1.0.1', 'sha': 'fca2ab5c508fc8179380ff747eab68b6db8aa93f', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.964250', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9894427Z 2025-08-21 21:57:44,964 - INFO - āœ… Tagged current release: metaboigniter/results-fca2ab5c508fc8179380ff747eab68b6db8aa93f +2025-08-21T21:57:44.9895613Z 2025-08-21 21:57:44,964 - INFO - Processing: reportho/results-42b305199b903365b71e7a8554cfcc6a822da8a8 +2025-08-21T21:57:44.9897833Z 2025-08-21 21:57:44,964 - INFO - DRY RUN: Would tag objects in reportho/results-42b305199b903365b71e7a8554cfcc6a822da8a8 with {'pipeline': 'reportho', 'release': '1.0.1', 'sha': '42b305199b903365b71e7a8554cfcc6a822da8a8', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.964343', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9900125Z 2025-08-21 21:57:44,964 - INFO - āœ… Tagged current release: reportho/results-42b305199b903365b71e7a8554cfcc6a822da8a8 +2025-08-21T21:57:44.9900976Z 2025-08-21 21:57:44,964 - INFO - Processing: airrflow/results-dev +2025-08-21T21:57:44.9902356Z 2025-08-21 21:57:44,964 - INFO - DRY RUN: Would tag objects in airrflow/results-dev with {'pipeline': 'airrflow', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.964435', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9904120Z 2025-08-21 21:57:44,964 - WARNING - šŸ—‘ļø Tagged orphaned directory: airrflow/results-dev +2025-08-21T21:57:44.9905169Z 2025-08-21 21:57:44,964 - INFO - Processing: createtaxdb/results-fdd09767611d5e6cc0d3ccad09b39174baa30972 +2025-08-21T21:57:44.9907078Z 2025-08-21 21:57:44,964 - INFO - DRY RUN: Would tag objects in createtaxdb/results-fdd09767611d5e6cc0d3ccad09b39174baa30972 with {'pipeline': 'createtaxdb', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.964539', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9909409Z 2025-08-21 21:57:44,964 - WARNING - šŸ—‘ļø Tagged orphaned directory: createtaxdb/results-fdd09767611d5e6cc0d3ccad09b39174baa30972 +2025-08-21T21:57:44.9910493Z 2025-08-21 21:57:44,964 - INFO - Processing: sarek/results-0b7f0e2b6f0be7053838ba1884b2eb03e9f83f9e +2025-08-21T21:57:44.9912513Z 2025-08-21 21:57:44,964 - INFO - DRY RUN: Would tag objects in sarek/results-0b7f0e2b6f0be7053838ba1884b2eb03e9f83f9e with {'pipeline': 'sarek', 'release': '3.1', 'sha': '0b7f0e2b6f0be7053838ba1884b2eb03e9f83f9e', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.964636', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9914721Z 2025-08-21 21:57:44,964 - INFO - āœ… Tagged current release: sarek/results-0b7f0e2b6f0be7053838ba1884b2eb03e9f83f9e +2025-08-21T21:57:44.9915885Z 2025-08-21 21:57:44,964 - INFO - Processing: detaxizer/results-c6286cc84b4906c709f5cb15a62965a0f06ff0e4 +2025-08-21T21:57:44.9917732Z 2025-08-21 21:57:44,964 - INFO - DRY RUN: Would tag objects in detaxizer/results-c6286cc84b4906c709f5cb15a62965a0f06ff0e4 with {'pipeline': 'detaxizer', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.964726', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9919849Z 2025-08-21 21:57:44,964 - WARNING - šŸ—‘ļø Tagged orphaned directory: detaxizer/results-c6286cc84b4906c709f5cb15a62965a0f06ff0e4 +2025-08-21T21:57:44.9920983Z 2025-08-21 21:57:44,964 - INFO - Processing: genomeassembler/results-6b5f98818c465cbb9cd39b6f4a69209dbca08b8e +2025-08-21T21:57:44.9922955Z 2025-08-21 21:57:44,964 - INFO - DRY RUN: Would tag objects in genomeassembler/results-6b5f98818c465cbb9cd39b6f4a69209dbca08b8e with {'pipeline': 'genomeassembler', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.964820', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9925333Z 2025-08-21 21:57:44,964 - WARNING - šŸ—‘ļø Tagged orphaned directory: genomeassembler/results-6b5f98818c465cbb9cd39b6f4a69209dbca08b8e +2025-08-21T21:57:44.9926452Z 2025-08-21 21:57:44,964 - INFO - Processing: sarek/results-79fd632bf4cda5aae548e6a0370f1809ef30777f +2025-08-21T21:57:44.9928223Z 2025-08-21 21:57:44,964 - INFO - DRY RUN: Would tag objects in sarek/results-79fd632bf4cda5aae548e6a0370f1809ef30777f with {'pipeline': 'sarek', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.964912', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9930253Z 2025-08-21 21:57:44,964 - WARNING - šŸ—‘ļø Tagged orphaned directory: sarek/results-79fd632bf4cda5aae548e6a0370f1809ef30777f +2025-08-21T21:57:44.9931307Z 2025-08-21 21:57:44,964 - INFO - Processing: smrnaseq/results-18d6c84926a3c983d4d9518a53020a7791746c98 +2025-08-21T21:57:44.9933512Z 2025-08-21 21:57:44,965 - INFO - DRY RUN: Would tag objects in smrnaseq/results-18d6c84926a3c983d4d9518a53020a7791746c98 with {'pipeline': 'smrnaseq', 'release': '2.2.3', 'sha': '18d6c84926a3c983d4d9518a53020a7791746c98', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.965005', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9935949Z 2025-08-21 21:57:44,965 - INFO - āœ… Tagged current release: smrnaseq/results-18d6c84926a3c983d4d9518a53020a7791746c98 +2025-08-21T21:57:44.9937011Z 2025-08-21 21:57:44,965 - INFO - Processing: diaproteomics/results-a219be9c33de0b0732cbab0282702f03d21432c8 +2025-08-21T21:57:44.9939200Z 2025-08-21 21:57:44,965 - INFO - DRY RUN: Would tag objects in diaproteomics/results-a219be9c33de0b0732cbab0282702f03d21432c8 with {'pipeline': 'diaproteomics', 'release': '1.2.2', 'sha': 'a219be9c33de0b0732cbab0282702f03d21432c8', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.965094', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9941591Z 2025-08-21 21:57:44,965 - INFO - āœ… Tagged current release: diaproteomics/results-a219be9c33de0b0732cbab0282702f03d21432c8 +2025-08-21T21:57:44.9942849Z 2025-08-21 21:57:44,965 - INFO - Processing: diaproteomics/results-6c4157d8454cbaf3897f982abb538aaa6f89cb27 +2025-08-21T21:57:44.9945196Z 2025-08-21 21:57:44,965 - INFO - DRY RUN: Would tag objects in diaproteomics/results-6c4157d8454cbaf3897f982abb538aaa6f89cb27 with {'pipeline': 'diaproteomics', 'release': '1.2.0', 'sha': '6c4157d8454cbaf3897f982abb538aaa6f89cb27', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.965183', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9947614Z 2025-08-21 21:57:44,965 - INFO - āœ… Tagged current release: diaproteomics/results-6c4157d8454cbaf3897f982abb538aaa6f89cb27 +2025-08-21T21:57:44.9948770Z 2025-08-21 21:57:44,965 - INFO - Processing: methylseq/results-335f2a865a07a4b1b084830149412e404a736db2-bwameth-GPU +2025-08-21T21:57:44.9950764Z 2025-08-21 21:57:44,965 - INFO - DRY RUN: Would tag objects in methylseq/results-335f2a865a07a4b1b084830149412e404a736db2-bwameth-GPU with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.965273', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9953046Z 2025-08-21 21:57:44,965 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-335f2a865a07a4b1b084830149412e404a736db2-bwameth-GPU +2025-08-21T21:57:44.9954201Z 2025-08-21 21:57:44,965 - INFO - Processing: riboseq/results-58e7265af89163e7accf77f799b03c56b82966a0 +2025-08-21T21:57:44.9956425Z 2025-08-21 21:57:44,965 - INFO - DRY RUN: Would tag objects in riboseq/results-58e7265af89163e7accf77f799b03c56b82966a0 with {'pipeline': 'riboseq', 'release': '1.0.0', 'sha': '58e7265af89163e7accf77f799b03c56b82966a0', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.965362', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9958691Z 2025-08-21 21:57:44,965 - INFO - āœ… Tagged current release: riboseq/results-58e7265af89163e7accf77f799b03c56b82966a0 +2025-08-21T21:57:44.9959725Z 2025-08-21 21:57:44,965 - INFO - Processing: viralrecon/results-3731dd3a32a67a2648ea22c2bd980c224abdaee2 +2025-08-21T21:57:44.9961865Z 2025-08-21 21:57:44,965 - INFO - DRY RUN: Would tag objects in viralrecon/results-3731dd3a32a67a2648ea22c2bd980c224abdaee2 with {'pipeline': 'viralrecon', 'release': '2.6.0', 'sha': '3731dd3a32a67a2648ea22c2bd980c224abdaee2', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.965448', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9964190Z 2025-08-21 21:57:44,965 - INFO - āœ… Tagged current release: viralrecon/results-3731dd3a32a67a2648ea22c2bd980c224abdaee2 +2025-08-21T21:57:44.9965367Z 2025-08-21 21:57:44,965 - INFO - Processing: rnaseq/results-test-86c45b8e0e0213f055118ab23dcbcf262c9159da +2025-08-21T21:57:44.9967209Z 2025-08-21 21:57:44,965 - INFO - DRY RUN: Would tag objects in rnaseq/results-test-86c45b8e0e0213f055118ab23dcbcf262c9159da with {'pipeline': 'rnaseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.965553', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9969485Z 2025-08-21 21:57:44,965 - WARNING - šŸ—‘ļø Tagged orphaned directory: rnaseq/results-test-86c45b8e0e0213f055118ab23dcbcf262c9159da +2025-08-21T21:57:44.9970592Z 2025-08-21 21:57:44,965 - INFO - Processing: nanoseq/results-855ce8b4c5095c449f015699246d5bea83b3098f +2025-08-21T21:57:44.9972388Z 2025-08-21 21:57:44,965 - INFO - DRY RUN: Would tag objects in nanoseq/results-855ce8b4c5095c449f015699246d5bea83b3098f with {'pipeline': 'nanoseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.965644', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9974438Z 2025-08-21 21:57:44,965 - WARNING - šŸ—‘ļø Tagged orphaned directory: nanoseq/results-855ce8b4c5095c449f015699246d5bea83b3098f +2025-08-21T21:57:44.9975626Z 2025-08-21 21:57:44,965 - INFO - Processing: rnaseq/results-0cf9100ab62941ccb851db83ed9a6b9aa625f331 +2025-08-21T21:57:44.9977421Z 2025-08-21 21:57:44,965 - INFO - DRY RUN: Would tag objects in rnaseq/results-0cf9100ab62941ccb851db83ed9a6b9aa625f331 with {'pipeline': 'rnaseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.965734', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9979632Z 2025-08-21 21:57:44,965 - WARNING - šŸ—‘ļø Tagged orphaned directory: rnaseq/results-0cf9100ab62941ccb851db83ed9a6b9aa625f331 +2025-08-21T21:57:44.9980691Z 2025-08-21 21:57:44,965 - INFO - Processing: chipseq/results-b161a7df07b7d015e3601556ff3a2d228a913b50 +2025-08-21T21:57:44.9982476Z 2025-08-21 21:57:44,965 - INFO - DRY RUN: Would tag objects in chipseq/results-b161a7df07b7d015e3601556ff3a2d228a913b50 with {'pipeline': 'chipseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.965823', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9984527Z 2025-08-21 21:57:44,965 - WARNING - šŸ—‘ļø Tagged orphaned directory: chipseq/results-b161a7df07b7d015e3601556ff3a2d228a913b50 +2025-08-21T21:57:44.9985744Z 2025-08-21 21:57:44,965 - INFO - Processing: fastquorum/results-1f6d25fc9c0b30f2c756fd844bdaa7c352a82e07 +2025-08-21T21:57:44.9987886Z 2025-08-21 21:57:44,965 - INFO - DRY RUN: Would tag objects in fastquorum/results-1f6d25fc9c0b30f2c756fd844bdaa7c352a82e07 with {'pipeline': 'fastquorum', 'release': '1.1.0', 'sha': '1f6d25fc9c0b30f2c756fd844bdaa7c352a82e07', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.965914', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9990271Z 2025-08-21 21:57:44,965 - INFO - āœ… Tagged current release: fastquorum/results-1f6d25fc9c0b30f2c756fd844bdaa7c352a82e07 +2025-08-21T21:57:44.9991326Z 2025-08-21 21:57:44,965 - INFO - Processing: airrflow/results-e9f4adefb15d721df4cdc2f662756dde7c7ede21 +2025-08-21T21:57:44.9993165Z 2025-08-21 21:57:44,966 - INFO - DRY RUN: Would tag objects in airrflow/results-e9f4adefb15d721df4cdc2f662756dde7c7ede21 with {'pipeline': 'airrflow', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.966005', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:44.9995396Z 2025-08-21 21:57:44,966 - WARNING - šŸ—‘ļø Tagged orphaned directory: airrflow/results-e9f4adefb15d721df4cdc2f662756dde7c7ede21 +2025-08-21T21:57:44.9996532Z 2025-08-21 21:57:44,966 - INFO - Processing: taxprofiler/results-06c6f14e6b5931c4492ae4c989e3e4c32a688fb3 +2025-08-21T21:57:44.9998410Z 2025-08-21 21:57:44,966 - INFO - DRY RUN: Would tag objects in taxprofiler/results-06c6f14e6b5931c4492ae4c989e3e4c32a688fb3 with {'pipeline': 'taxprofiler', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.966096', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0000579Z 2025-08-21 21:57:44,966 - WARNING - šŸ—‘ļø Tagged orphaned directory: taxprofiler/results-06c6f14e6b5931c4492ae4c989e3e4c32a688fb3 +2025-08-21T21:57:45.0001769Z 2025-08-21 21:57:44,966 - INFO - Processing: differentialabundance/results-f9bed37741dd5b9b67c9ef7b6d65af1122b69115 +2025-08-21T21:57:45.0004311Z 2025-08-21 21:57:44,966 - INFO - DRY RUN: Would tag objects in differentialabundance/results-f9bed37741dd5b9b67c9ef7b6d65af1122b69115 with {'pipeline': 'differentialabundance', 'release': '1.0.1', 'sha': 'f9bed37741dd5b9b67c9ef7b6d65af1122b69115', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.966186', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0007079Z 2025-08-21 21:57:44,966 - INFO - āœ… Tagged current release: differentialabundance/results-f9bed37741dd5b9b67c9ef7b6d65af1122b69115 +2025-08-21T21:57:45.0008017Z 2025-08-21 21:57:44,966 - INFO - Processing: demo/results-dev +2025-08-21T21:57:45.0009329Z 2025-08-21 21:57:44,966 - INFO - DRY RUN: Would tag objects in demo/results-dev with {'pipeline': 'demo', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.966275', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0010831Z 2025-08-21 21:57:44,966 - WARNING - šŸ—‘ļø Tagged orphaned directory: demo/results-dev +2025-08-21T21:57:45.0011654Z 2025-08-21 21:57:44,966 - INFO - Processing: mag/results-2921b861212fe5cb99b48beca23c9c26af699d65 +2025-08-21T21:57:45.0013382Z 2025-08-21 21:57:44,966 - INFO - DRY RUN: Would tag objects in mag/results-2921b861212fe5cb99b48beca23c9c26af699d65 with {'pipeline': 'mag', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.966366', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0015741Z 2025-08-21 21:57:44,966 - WARNING - šŸ—‘ļø Tagged orphaned directory: mag/results-2921b861212fe5cb99b48beca23c9c26af699d65 +2025-08-21T21:57:45.0016642Z 2025-08-21 21:57:44,966 - INFO - Processing: reportho/results-dev +2025-08-21T21:57:45.0018025Z 2025-08-21 21:57:44,966 - INFO - DRY RUN: Would tag objects in reportho/results-dev with {'pipeline': 'reportho', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.966457', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0019613Z 2025-08-21 21:57:44,966 - WARNING - šŸ—‘ļø Tagged orphaned directory: reportho/results-dev +2025-08-21T21:57:45.0020460Z 2025-08-21 21:57:44,966 - INFO - Processing: mag/results-32cc2cc274e1aa97e6b60d58760a79d3f1cf90e8 +2025-08-21T21:57:45.0022195Z 2025-08-21 21:57:44,966 - INFO - DRY RUN: Would tag objects in mag/results-32cc2cc274e1aa97e6b60d58760a79d3f1cf90e8 with {'pipeline': 'mag', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.966561', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0024180Z 2025-08-21 21:57:44,966 - WARNING - šŸ—‘ļø Tagged orphaned directory: mag/results-32cc2cc274e1aa97e6b60d58760a79d3f1cf90e8 +2025-08-21T21:57:45.0025938Z 2025-08-21 21:57:44,966 - INFO - Processing: taxprofiler/results-df4e0010e4295aaecbb226da143efe390f9188dd +2025-08-21T21:57:45.0028104Z 2025-08-21 21:57:44,966 - INFO - DRY RUN: Would tag objects in taxprofiler/results-df4e0010e4295aaecbb226da143efe390f9188dd with {'pipeline': 'taxprofiler', 'release': '1.1.3', 'sha': 'df4e0010e4295aaecbb226da143efe390f9188dd', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.966653', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0030488Z 2025-08-21 21:57:44,966 - INFO - āœ… Tagged current release: taxprofiler/results-df4e0010e4295aaecbb226da143efe390f9188dd +2025-08-21T21:57:45.0031562Z 2025-08-21 21:57:44,966 - INFO - Processing: phaseimpute/results-d09247947ce0279bce9b0a987380d341d6553cdf +2025-08-21T21:57:45.0033456Z 2025-08-21 21:57:44,966 - INFO - DRY RUN: Would tag objects in phaseimpute/results-d09247947ce0279bce9b0a987380d341d6553cdf with {'pipeline': 'phaseimpute', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.966742', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0035745Z 2025-08-21 21:57:44,966 - WARNING - šŸ—‘ļø Tagged orphaned directory: phaseimpute/results-d09247947ce0279bce9b0a987380d341d6553cdf +2025-08-21T21:57:45.0036841Z 2025-08-21 21:57:44,966 - INFO - Processing: nascent/results-12e9ba628540fbf63e7dfc888bb23325218a3ee0 +2025-08-21T21:57:45.0038903Z 2025-08-21 21:57:44,966 - INFO - DRY RUN: Would tag objects in nascent/results-12e9ba628540fbf63e7dfc888bb23325218a3ee0 with {'pipeline': 'nascent', 'release': '2.1.0', 'sha': '12e9ba628540fbf63e7dfc888bb23325218a3ee0', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.966836', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0041407Z 2025-08-21 21:57:44,966 - INFO - āœ… Tagged current release: nascent/results-12e9ba628540fbf63e7dfc888bb23325218a3ee0 +2025-08-21T21:57:45.0042433Z 2025-08-21 21:57:44,966 - INFO - Processing: rnaseq/results-48fb9b4ea640f029f48c79283217d0f20661d38e +2025-08-21T21:57:45.0044506Z 2025-08-21 21:57:44,966 - INFO - DRY RUN: Would tag objects in rnaseq/results-48fb9b4ea640f029f48c79283217d0f20661d38e with {'pipeline': 'rnaseq', 'release': '3.11.0', 'sha': '48fb9b4ea640f029f48c79283217d0f20661d38e', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.966924', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0046861Z 2025-08-21 21:57:44,966 - INFO - āœ… Tagged current release: rnaseq/results-48fb9b4ea640f029f48c79283217d0f20661d38e +2025-08-21T21:57:45.0047852Z 2025-08-21 21:57:44,966 - INFO - Processing: sarek/results-67914f82ecae840307180d1af0fdef853f7fefdf +2025-08-21T21:57:45.0049624Z 2025-08-21 21:57:44,967 - INFO - DRY RUN: Would tag objects in sarek/results-67914f82ecae840307180d1af0fdef853f7fefdf with {'pipeline': 'sarek', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.967022', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0051814Z 2025-08-21 21:57:44,967 - WARNING - šŸ—‘ļø Tagged orphaned directory: sarek/results-67914f82ecae840307180d1af0fdef853f7fefdf +2025-08-21T21:57:45.0052843Z 2025-08-21 21:57:44,967 - INFO - Processing: sarek/results-28666175d07f8b092e067532c8bb43baf579e852 +2025-08-21T21:57:45.0054579Z 2025-08-21 21:57:44,967 - INFO - DRY RUN: Would tag objects in sarek/results-28666175d07f8b092e067532c8bb43baf579e852 with {'pipeline': 'sarek', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.967112', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0056717Z 2025-08-21 21:57:44,967 - WARNING - šŸ—‘ļø Tagged orphaned directory: sarek/results-28666175d07f8b092e067532c8bb43baf579e852 +2025-08-21T21:57:45.0057804Z 2025-08-21 21:57:44,967 - INFO - Processing: metatdenovo/results-c58c01c45738664d6e57fd1bb0faa30d3ba9cbcf +2025-08-21T21:57:45.0059969Z 2025-08-21 21:57:44,967 - INFO - DRY RUN: Would tag objects in metatdenovo/results-c58c01c45738664d6e57fd1bb0faa30d3ba9cbcf with {'pipeline': 'metatdenovo', 'release': '1.2.0', 'sha': 'c58c01c45738664d6e57fd1bb0faa30d3ba9cbcf', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.967203', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0062326Z 2025-08-21 21:57:44,967 - INFO - āœ… Tagged current release: metatdenovo/results-c58c01c45738664d6e57fd1bb0faa30d3ba9cbcf +2025-08-21T21:57:45.0063386Z 2025-08-21 21:57:44,967 - INFO - Processing: viralrecon/results-a85d5969f9025409e3618d6c280ef15ce417df65 +2025-08-21T21:57:45.0065603Z 2025-08-21 21:57:44,967 - INFO - DRY RUN: Would tag objects in viralrecon/results-a85d5969f9025409e3618d6c280ef15ce417df65 with {'pipeline': 'viralrecon', 'release': '2.0', 'sha': 'a85d5969f9025409e3618d6c280ef15ce417df65', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.967290', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0067928Z 2025-08-21 21:57:44,967 - INFO - āœ… Tagged current release: viralrecon/results-a85d5969f9025409e3618d6c280ef15ce417df65 +2025-08-21T21:57:45.0069018Z 2025-08-21 21:57:44,967 - INFO - Processing: drugresponseeval/results-220953d0c3d7871dd075e697e09aa2b1dbba4801 +2025-08-21T21:57:45.0071018Z 2025-08-21 21:57:44,967 - INFO - DRY RUN: Would tag objects in drugresponseeval/results-220953d0c3d7871dd075e697e09aa2b1dbba4801 with {'pipeline': 'drugresponseeval', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.967378', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0073287Z 2025-08-21 21:57:44,967 - WARNING - šŸ—‘ļø Tagged orphaned directory: drugresponseeval/results-220953d0c3d7871dd075e697e09aa2b1dbba4801 +2025-08-21T21:57:45.0074428Z 2025-08-21 21:57:44,967 - INFO - Processing: ampliseq/results-68e4b5ff9aef5e97c9f8b8a56c8b7a394a38e18f +2025-08-21T21:57:45.0076823Z 2025-08-21 21:57:44,967 - INFO - DRY RUN: Would tag objects in ampliseq/results-68e4b5ff9aef5e97c9f8b8a56c8b7a394a38e18f with {'pipeline': 'ampliseq', 'release': '2.1.0', 'sha': '68e4b5ff9aef5e97c9f8b8a56c8b7a394a38e18f', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.967467', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0079157Z 2025-08-21 21:57:44,967 - INFO - āœ… Tagged current release: ampliseq/results-68e4b5ff9aef5e97c9f8b8a56c8b7a394a38e18f +2025-08-21T21:57:45.0080195Z 2025-08-21 21:57:44,967 - INFO - Processing: ampliseq/results-3f40a1b6a84c02ad1cdde7a60a2be15f09731508 +2025-08-21T21:57:45.0082283Z 2025-08-21 21:57:44,967 - INFO - DRY RUN: Would tag objects in ampliseq/results-3f40a1b6a84c02ad1cdde7a60a2be15f09731508 with {'pipeline': 'ampliseq', 'release': '2.10.0', 'sha': '3f40a1b6a84c02ad1cdde7a60a2be15f09731508', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.967567', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0084571Z 2025-08-21 21:57:44,967 - INFO - āœ… Tagged current release: ampliseq/results-3f40a1b6a84c02ad1cdde7a60a2be15f09731508 +2025-08-21T21:57:45.0085888Z 2025-08-21 21:57:44,967 - INFO - Processing: quantms/results-fa34d79f5071ae064d1438ad59c53b0093622ae5 +2025-08-21T21:57:45.0087685Z 2025-08-21 21:57:44,967 - INFO - DRY RUN: Would tag objects in quantms/results-fa34d79f5071ae064d1438ad59c53b0093622ae5 with {'pipeline': 'quantms', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.967656', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0089756Z 2025-08-21 21:57:44,967 - WARNING - šŸ—‘ļø Tagged orphaned directory: quantms/results-fa34d79f5071ae064d1438ad59c53b0093622ae5 +2025-08-21T21:57:45.0090812Z 2025-08-21 21:57:44,967 - INFO - Processing: airrflow/results-140238594f9da0865a735a328dfaefdcd1e16e2d +2025-08-21T21:57:45.0092620Z 2025-08-21 21:57:44,967 - INFO - DRY RUN: Would tag objects in airrflow/results-140238594f9da0865a735a328dfaefdcd1e16e2d with {'pipeline': 'airrflow', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.967748', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0094715Z 2025-08-21 21:57:44,967 - WARNING - šŸ—‘ļø Tagged orphaned directory: airrflow/results-140238594f9da0865a735a328dfaefdcd1e16e2d +2025-08-21T21:57:45.0095980Z 2025-08-21 21:57:44,967 - INFO - Processing: epitopeprediction/results-cfbfeb56b2224ae603539e88088ff4170a01dba6 +2025-08-21T21:57:45.0098279Z 2025-08-21 21:57:44,967 - INFO - DRY RUN: Would tag objects in epitopeprediction/results-cfbfeb56b2224ae603539e88088ff4170a01dba6 with {'pipeline': 'epitopeprediction', 'release': '2.3.1', 'sha': 'cfbfeb56b2224ae603539e88088ff4170a01dba6', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.967837', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0100777Z 2025-08-21 21:57:44,967 - INFO - āœ… Tagged current release: epitopeprediction/results-cfbfeb56b2224ae603539e88088ff4170a01dba6 +2025-08-21T21:57:45.0101883Z 2025-08-21 21:57:44,967 - INFO - Processing: methylong/results-f3e522ce5ecdaaeff98d4ad4868692d22d85009a +2025-08-21T21:57:45.0103751Z 2025-08-21 21:57:44,967 - INFO - DRY RUN: Would tag objects in methylong/results-f3e522ce5ecdaaeff98d4ad4868692d22d85009a with {'pipeline': 'methylong', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.967923', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0106001Z 2025-08-21 21:57:44,967 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylong/results-f3e522ce5ecdaaeff98d4ad4868692d22d85009a +2025-08-21T21:57:45.0107083Z 2025-08-21 21:57:44,967 - INFO - Processing: rnaseq/results-89bf536ce4faa98b4d50a8ec0a0343780bc62e0a +2025-08-21T21:57:45.0109131Z 2025-08-21 21:57:44,968 - INFO - DRY RUN: Would tag objects in rnaseq/results-89bf536ce4faa98b4d50a8ec0a0343780bc62e0a with {'pipeline': 'rnaseq', 'release': '3.8.1', 'sha': '89bf536ce4faa98b4d50a8ec0a0343780bc62e0a', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.968013', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0111379Z 2025-08-21 21:57:44,968 - INFO - āœ… Tagged current release: rnaseq/results-89bf536ce4faa98b4d50a8ec0a0343780bc62e0a +2025-08-21T21:57:45.0112616Z 2025-08-21 21:57:44,968 - INFO - Processing: rnafusion/results-72ed5b136d2ec30091a556ff3f7a541bbac09c73 +2025-08-21T21:57:45.0114464Z 2025-08-21 21:57:44,968 - INFO - DRY RUN: Would tag objects in rnafusion/results-72ed5b136d2ec30091a556ff3f7a541bbac09c73 with {'pipeline': 'rnafusion', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.968101', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0116723Z 2025-08-21 21:57:44,968 - WARNING - šŸ—‘ļø Tagged orphaned directory: rnafusion/results-72ed5b136d2ec30091a556ff3f7a541bbac09c73 +2025-08-21T21:57:45.0117831Z 2025-08-21 21:57:44,968 - INFO - Processing: taxprofiler/results-21e6af85133a742bf1fb2fafa64e9cd9c47e9cb7 +2025-08-21T21:57:45.0120008Z 2025-08-21 21:57:44,968 - INFO - DRY RUN: Would tag objects in taxprofiler/results-21e6af85133a742bf1fb2fafa64e9cd9c47e9cb7 with {'pipeline': 'taxprofiler', 'release': '1.1.4', 'sha': '21e6af85133a742bf1fb2fafa64e9cd9c47e9cb7', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.968191', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0122529Z 2025-08-21 21:57:44,968 - INFO - āœ… Tagged current release: taxprofiler/results-21e6af85133a742bf1fb2fafa64e9cd9c47e9cb7 +2025-08-21T21:57:45.0123583Z 2025-08-21 21:57:44,968 - INFO - Processing: methylong/results-a6a38c31d63f6e9041680272ee652469ed3f8930 +2025-08-21T21:57:45.0125535Z 2025-08-21 21:57:44,968 - INFO - DRY RUN: Would tag objects in methylong/results-a6a38c31d63f6e9041680272ee652469ed3f8930 with {'pipeline': 'methylong', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.968281', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0127638Z 2025-08-21 21:57:44,968 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylong/results-a6a38c31d63f6e9041680272ee652469ed3f8930 +2025-08-21T21:57:45.0128794Z 2025-08-21 21:57:44,968 - INFO - Processing: methylseq/results-335f2a865a07a4b1b084830149412e404a736db2-bismark-ARM +2025-08-21T21:57:45.0130785Z 2025-08-21 21:57:44,968 - INFO - DRY RUN: Would tag objects in methylseq/results-335f2a865a07a4b1b084830149412e404a736db2-bismark-ARM with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.968371', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0133060Z 2025-08-21 21:57:44,968 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-335f2a865a07a4b1b084830149412e404a736db2-bismark-ARM +2025-08-21T21:57:45.0134206Z 2025-08-21 21:57:44,968 - INFO - Processing: rnaseq/results-0bb032c1e3b1e1ff0b0a72192b9118fdb5062489 +2025-08-21T21:57:45.0136374Z 2025-08-21 21:57:44,968 - INFO - DRY RUN: Would tag objects in rnaseq/results-0bb032c1e3b1e1ff0b0a72192b9118fdb5062489 with {'pipeline': 'rnaseq', 'release': '3.19.0', 'sha': '0bb032c1e3b1e1ff0b0a72192b9118fdb5062489', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.968461', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0138639Z 2025-08-21 21:57:44,968 - INFO - āœ… Tagged current release: rnaseq/results-0bb032c1e3b1e1ff0b0a72192b9118fdb5062489 +2025-08-21T21:57:45.0139665Z 2025-08-21 21:57:44,968 - INFO - Processing: airrflow/results-5d8cdb4d6b506fa59e43b93de13a819433ee2cbd +2025-08-21T21:57:45.0141489Z 2025-08-21 21:57:44,968 - INFO - DRY RUN: Would tag objects in airrflow/results-5d8cdb4d6b506fa59e43b93de13a819433ee2cbd with {'pipeline': 'airrflow', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.968564', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0143581Z 2025-08-21 21:57:44,968 - WARNING - šŸ—‘ļø Tagged orphaned directory: airrflow/results-5d8cdb4d6b506fa59e43b93de13a819433ee2cbd +2025-08-21T21:57:45.0144787Z 2025-08-21 21:57:44,968 - INFO - Processing: drugresponseeval/results-test-e26b32456232cb211289359a70861158307c6355 +2025-08-21T21:57:45.0147111Z 2025-08-21 21:57:44,968 - INFO - DRY RUN: Would tag objects in drugresponseeval/results-test-e26b32456232cb211289359a70861158307c6355 with {'pipeline': 'drugresponseeval', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.968655', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0149459Z 2025-08-21 21:57:44,968 - WARNING - šŸ—‘ļø Tagged orphaned directory: drugresponseeval/results-test-e26b32456232cb211289359a70861158307c6355 +2025-08-21T21:57:45.0150618Z 2025-08-21 21:57:44,968 - INFO - Processing: smrnaseq/results-03333bfa17adc8d829a400012ed9f13c5abf4cc3 +2025-08-21T21:57:45.0152699Z 2025-08-21 21:57:44,968 - INFO - DRY RUN: Would tag objects in smrnaseq/results-03333bfa17adc8d829a400012ed9f13c5abf4cc3 with {'pipeline': 'smrnaseq', 'release': '1.1.0', 'sha': '03333bfa17adc8d829a400012ed9f13c5abf4cc3', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.968745', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0155113Z 2025-08-21 21:57:44,968 - INFO - āœ… Tagged current release: smrnaseq/results-03333bfa17adc8d829a400012ed9f13c5abf4cc3 +2025-08-21T21:57:45.0156171Z 2025-08-21 21:57:44,968 - INFO - Processing: molkart/results-test-7605a53092930a0b65509c64f79834a6c8449e9b +2025-08-21T21:57:45.0158194Z 2025-08-21 21:57:44,968 - INFO - DRY RUN: Would tag objects in molkart/results-test-7605a53092930a0b65509c64f79834a6c8449e9b with {'pipeline': 'molkart', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.968833', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0160328Z 2025-08-21 21:57:44,968 - WARNING - šŸ—‘ļø Tagged orphaned directory: molkart/results-test-7605a53092930a0b65509c64f79834a6c8449e9b +2025-08-21T21:57:45.0161414Z 2025-08-21 21:57:44,968 - INFO - Processing: rnaseq/results-a10f41afa204538d5dcc89a5910c299d68f94f41 +2025-08-21T21:57:45.0163455Z 2025-08-21 21:57:44,968 - INFO - DRY RUN: Would tag objects in rnaseq/results-a10f41afa204538d5dcc89a5910c299d68f94f41 with {'pipeline': 'rnaseq', 'release': '3.13.2', 'sha': 'a10f41afa204538d5dcc89a5910c299d68f94f41', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.968923', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0165879Z 2025-08-21 21:57:44,968 - INFO - āœ… Tagged current release: rnaseq/results-a10f41afa204538d5dcc89a5910c299d68f94f41 +2025-08-21T21:57:45.0166898Z 2025-08-21 21:57:44,968 - INFO - Processing: nanoseq/results-c59485c080690d591fc5c861300634063e523c81 +2025-08-21T21:57:45.0168678Z 2025-08-21 21:57:44,969 - INFO - DRY RUN: Would tag objects in nanoseq/results-c59485c080690d591fc5c861300634063e523c81 with {'pipeline': 'nanoseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.969010', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0170730Z 2025-08-21 21:57:44,969 - WARNING - šŸ—‘ļø Tagged orphaned directory: nanoseq/results-c59485c080690d591fc5c861300634063e523c81 +2025-08-21T21:57:45.0171789Z 2025-08-21 21:57:44,969 - INFO - Processing: rnaseq/results-0fcbb0ac491ecb8a80ef879c4f3dad5f869021f9 +2025-08-21T21:57:45.0173857Z 2025-08-21 21:57:44,969 - INFO - DRY RUN: Would tag objects in rnaseq/results-0fcbb0ac491ecb8a80ef879c4f3dad5f869021f9 with {'pipeline': 'rnaseq', 'release': '3.1', 'sha': '0fcbb0ac491ecb8a80ef879c4f3dad5f869021f9', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.969099', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0176269Z 2025-08-21 21:57:44,969 - INFO - āœ… Tagged current release: rnaseq/results-0fcbb0ac491ecb8a80ef879c4f3dad5f869021f9 +2025-08-21T21:57:45.0177286Z 2025-08-21 21:57:44,969 - INFO - Processing: fetchngs/results-2d593fb504caf65301c78b8076272f895e364cd7 +2025-08-21T21:57:45.0179346Z 2025-08-21 21:57:44,969 - INFO - DRY RUN: Would tag objects in fetchngs/results-2d593fb504caf65301c78b8076272f895e364cd7 with {'pipeline': 'fetchngs', 'release': '1.3', 'sha': '2d593fb504caf65301c78b8076272f895e364cd7', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.969186', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0181641Z 2025-08-21 21:57:44,969 - INFO - āœ… Tagged current release: fetchngs/results-2d593fb504caf65301c78b8076272f895e364cd7 +2025-08-21T21:57:45.0182692Z 2025-08-21 21:57:44,969 - INFO - Processing: methylseq/results-0bbf07f9de6d94800d5e0b316a2c0d1c4646a1ca +2025-08-21T21:57:45.0184739Z 2025-08-21 21:57:44,969 - INFO - DRY RUN: Would tag objects in methylseq/results-0bbf07f9de6d94800d5e0b316a2c0d1c4646a1ca with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.969273', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0187021Z 2025-08-21 21:57:44,969 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-0bbf07f9de6d94800d5e0b316a2c0d1c4646a1ca +2025-08-21T21:57:45.0188103Z 2025-08-21 21:57:44,969 - INFO - Processing: fetchngs/results-7b7ab2f818d8202b0bc71b7eb901c1329216ddd9 +2025-08-21T21:57:45.0190181Z 2025-08-21 21:57:44,969 - INFO - DRY RUN: Would tag objects in fetchngs/results-7b7ab2f818d8202b0bc71b7eb901c1329216ddd9 with {'pipeline': 'fetchngs', 'release': '1.6', 'sha': '7b7ab2f818d8202b0bc71b7eb901c1329216ddd9', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.969362', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0191888Z 2025-08-21 21:57:44,969 - INFO - āœ… Tagged current release: fetchngs/results-7b7ab2f818d8202b0bc71b7eb901c1329216ddd9 +2025-08-21T21:57:45.0192750Z 2025-08-21 21:57:44,969 - INFO - Processing: multiplesequencealign/results-15c3126ec605dd661ef11773da7751516f9a076c +2025-08-21T21:57:45.0194913Z 2025-08-21 21:57:44,969 - INFO - DRY RUN: Would tag objects in multiplesequencealign/results-15c3126ec605dd661ef11773da7751516f9a076c with {'pipeline': 'multiplesequencealign', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.969449', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0197469Z 2025-08-21 21:57:44,969 - WARNING - šŸ—‘ļø Tagged orphaned directory: multiplesequencealign/results-15c3126ec605dd661ef11773da7751516f9a076c +2025-08-21T21:57:45.0198671Z 2025-08-21 21:57:44,969 - INFO - Processing: crisprseq/results-04f7539e8020e4d19fa26c3d6011921617636b30 +2025-08-21T21:57:45.0200836Z 2025-08-21 21:57:44,969 - INFO - DRY RUN: Would tag objects in crisprseq/results-04f7539e8020e4d19fa26c3d6011921617636b30 with {'pipeline': 'crisprseq', 'release': '2.1.0', 'sha': '04f7539e8020e4d19fa26c3d6011921617636b30', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.969562', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0203206Z 2025-08-21 21:57:44,969 - INFO - āœ… Tagged current release: crisprseq/results-04f7539e8020e4d19fa26c3d6011921617636b30 +2025-08-21T21:57:45.0204239Z 2025-08-21 21:57:44,969 - INFO - Processing: pgdb/results-4eda7a827f83a9be0470de16331f7105ab48bdd1 +2025-08-21T21:57:45.0206409Z 2025-08-21 21:57:44,969 - INFO - DRY RUN: Would tag objects in pgdb/results-4eda7a827f83a9be0470de16331f7105ab48bdd1 with {'pipeline': 'pgdb', 'release': '1.0.0', 'sha': '4eda7a827f83a9be0470de16331f7105ab48bdd1', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.969653', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0208651Z 2025-08-21 21:57:44,969 - INFO - āœ… Tagged current release: pgdb/results-4eda7a827f83a9be0470de16331f7105ab48bdd1 +2025-08-21T21:57:45.0209690Z 2025-08-21 21:57:44,969 - INFO - Processing: methylong/results-630bec9c7825feba23886d1cb43e1d20b357ebe2 +2025-08-21T21:57:45.0211569Z 2025-08-21 21:57:44,969 - INFO - DRY RUN: Would tag objects in methylong/results-630bec9c7825feba23886d1cb43e1d20b357ebe2 with {'pipeline': 'methylong', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.969751', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0213718Z 2025-08-21 21:57:44,969 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylong/results-630bec9c7825feba23886d1cb43e1d20b357ebe2 +2025-08-21T21:57:45.0214821Z 2025-08-21 21:57:44,969 - INFO - Processing: fetchngs/results-8ec2d934f9301c818d961b1e4fdf7fc79610bdc5 +2025-08-21T21:57:45.0217067Z 2025-08-21 21:57:44,969 - INFO - DRY RUN: Would tag objects in fetchngs/results-8ec2d934f9301c818d961b1e4fdf7fc79610bdc5 with {'pipeline': 'fetchngs', 'release': '1.12.0', 'sha': '8ec2d934f9301c818d961b1e4fdf7fc79610bdc5', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.969840', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0219565Z 2025-08-21 21:57:44,969 - INFO - āœ… Tagged current release: fetchngs/results-8ec2d934f9301c818d961b1e4fdf7fc79610bdc5 +2025-08-21T21:57:45.0220627Z 2025-08-21 21:57:44,969 - INFO - Processing: methylong/results-865f5f3d20342453b273266918afb2fd42b1f826 +2025-08-21T21:57:45.0222483Z 2025-08-21 21:57:44,969 - INFO - DRY RUN: Would tag objects in methylong/results-865f5f3d20342453b273266918afb2fd42b1f826 with {'pipeline': 'methylong', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.969928', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0224616Z 2025-08-21 21:57:44,969 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylong/results-865f5f3d20342453b273266918afb2fd42b1f826 +2025-08-21T21:57:45.0225877Z 2025-08-21 21:57:44,969 - INFO - Processing: crisprseq/results-8a5b827b458590dc1b99634cbf169b8dd4a043dd +2025-08-21T21:57:45.0227749Z 2025-08-21 21:57:44,970 - INFO - DRY RUN: Would tag objects in crisprseq/results-8a5b827b458590dc1b99634cbf169b8dd4a043dd with {'pipeline': 'crisprseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.970018', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0230047Z 2025-08-21 21:57:44,970 - WARNING - šŸ—‘ļø Tagged orphaned directory: crisprseq/results-8a5b827b458590dc1b99634cbf169b8dd4a043dd +2025-08-21T21:57:45.0231134Z 2025-08-21 21:57:44,970 - INFO - Processing: sarek/results-ae4dd11acc8b7e13fd6d4d45a92ff29a8e2b958d +2025-08-21T21:57:45.0233201Z 2025-08-21 21:57:44,970 - INFO - DRY RUN: Would tag objects in sarek/results-ae4dd11acc8b7e13fd6d4d45a92ff29a8e2b958d with {'pipeline': 'sarek', 'release': '3.5.0', 'sha': 'ae4dd11acc8b7e13fd6d4d45a92ff29a8e2b958d', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.970109', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0235604Z 2025-08-21 21:57:44,970 - INFO - āœ… Tagged current release: sarek/results-ae4dd11acc8b7e13fd6d4d45a92ff29a8e2b958d +2025-08-21T21:57:45.0236648Z 2025-08-21 21:57:44,970 - INFO - Processing: airrflow/results-cc29af5aeb19fb1a58ed6d627ac7aa5145d713fe +2025-08-21T21:57:45.0238810Z 2025-08-21 21:57:44,970 - INFO - DRY RUN: Would tag objects in airrflow/results-cc29af5aeb19fb1a58ed6d627ac7aa5145d713fe with {'pipeline': 'airrflow', 'release': '2.0.0', 'sha': 'cc29af5aeb19fb1a58ed6d627ac7aa5145d713fe', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.970199', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0241151Z 2025-08-21 21:57:44,970 - INFO - āœ… Tagged current release: airrflow/results-cc29af5aeb19fb1a58ed6d627ac7aa5145d713fe +2025-08-21T21:57:45.0242218Z 2025-08-21 21:57:44,970 - INFO - Processing: fastquorum/results-e6414c99ef5eef47a4ac3f124962e3dc5c21ab4b +2025-08-21T21:57:45.0244415Z 2025-08-21 21:57:44,970 - INFO - DRY RUN: Would tag objects in fastquorum/results-e6414c99ef5eef47a4ac3f124962e3dc5c21ab4b with {'pipeline': 'fastquorum', 'release': '1.2.0', 'sha': 'e6414c99ef5eef47a4ac3f124962e3dc5c21ab4b', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.970288', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0246926Z 2025-08-21 21:57:44,970 - INFO - āœ… Tagged current release: fastquorum/results-e6414c99ef5eef47a4ac3f124962e3dc5c21ab4b +2025-08-21T21:57:45.0248077Z 2025-08-21 21:57:44,970 - INFO - Processing: methylseq/results-fd056660f7680072e86ef1d7bd0ac903a377c53e-bismark-ARM +2025-08-21T21:57:45.0250108Z 2025-08-21 21:57:44,970 - INFO - DRY RUN: Would tag objects in methylseq/results-fd056660f7680072e86ef1d7bd0ac903a377c53e-bismark-ARM with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.970374', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0252418Z 2025-08-21 21:57:44,970 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-fd056660f7680072e86ef1d7bd0ac903a377c53e-bismark-ARM +2025-08-21T21:57:45.0253580Z 2025-08-21 21:57:44,970 - INFO - Processing: eager/results-20b0be4e769d9a4cffda59723ad7152e0a64b312 +2025-08-21T21:57:45.0255896Z 2025-08-21 21:57:44,970 - INFO - DRY RUN: Would tag objects in eager/results-20b0be4e769d9a4cffda59723ad7152e0a64b312 with {'pipeline': 'eager', 'release': '2.4.1', 'sha': '20b0be4e769d9a4cffda59723ad7152e0a64b312', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.970465', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0258171Z 2025-08-21 21:57:44,970 - INFO - āœ… Tagged current release: eager/results-20b0be4e769d9a4cffda59723ad7152e0a64b312 +2025-08-21T21:57:45.0259202Z 2025-08-21 21:57:44,970 - INFO - Processing: crisprseq/results-4d13b3452c4d829b2f7c9240c84ea195ccf9c771 +2025-08-21T21:57:45.0261324Z 2025-08-21 21:57:44,970 - INFO - DRY RUN: Would tag objects in crisprseq/results-4d13b3452c4d829b2f7c9240c84ea195ccf9c771 with {'pipeline': 'crisprseq', 'release': '2.1.1', 'sha': '4d13b3452c4d829b2f7c9240c84ea195ccf9c771', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.970568', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0263650Z 2025-08-21 21:57:44,970 - INFO - āœ… Tagged current release: crisprseq/results-4d13b3452c4d829b2f7c9240c84ea195ccf9c771 +2025-08-21T21:57:45.0264856Z 2025-08-21 21:57:44,970 - INFO - Processing: phyloplace/results-827b85d4c6718f23937d317b6f84fe828d73aecb +2025-08-21T21:57:45.0267131Z 2025-08-21 21:57:44,970 - INFO - DRY RUN: Would tag objects in phyloplace/results-827b85d4c6718f23937d317b6f84fe828d73aecb with {'pipeline': 'phyloplace', 'release': '2.0.0', 'sha': '827b85d4c6718f23937d317b6f84fe828d73aecb', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.970657', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0269482Z 2025-08-21 21:57:44,970 - INFO - āœ… Tagged current release: phyloplace/results-827b85d4c6718f23937d317b6f84fe828d73aecb +2025-08-21T21:57:45.0270604Z 2025-08-21 21:57:44,970 - INFO - Processing: testpipeline/results-test-f556dbf5bdd41fb35ef532cd406a2b44a0452165 +2025-08-21T21:57:45.0272631Z 2025-08-21 21:57:44,970 - INFO - DRY RUN: Would tag objects in testpipeline/results-test-f556dbf5bdd41fb35ef532cd406a2b44a0452165 with {'pipeline': 'testpipeline', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.970745', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0274942Z 2025-08-21 21:57:44,970 - WARNING - šŸ—‘ļø Tagged orphaned directory: testpipeline/results-test-f556dbf5bdd41fb35ef532cd406a2b44a0452165 +2025-08-21T21:57:45.0276199Z 2025-08-21 21:57:44,970 - INFO - Processing: mag/results-a50117e4ddc681b8ec5535fc265c66df45e38d30 +2025-08-21T21:57:45.0278198Z 2025-08-21 21:57:44,970 - INFO - DRY RUN: Would tag objects in mag/results-a50117e4ddc681b8ec5535fc265c66df45e38d30 with {'pipeline': 'mag', 'release': '3.0.0', 'sha': 'a50117e4ddc681b8ec5535fc265c66df45e38d30', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.970836', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0280396Z 2025-08-21 21:57:44,970 - INFO - āœ… Tagged current release: mag/results-a50117e4ddc681b8ec5535fc265c66df45e38d30 +2025-08-21T21:57:45.0281392Z 2025-08-21 21:57:44,970 - INFO - Processing: sarek/results-4bfb25049fdd2bf31c751bafcb6a18eddebcc1d5 +2025-08-21T21:57:45.0283206Z 2025-08-21 21:57:44,970 - INFO - DRY RUN: Would tag objects in sarek/results-4bfb25049fdd2bf31c751bafcb6a18eddebcc1d5 with {'pipeline': 'sarek', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.970923', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0285400Z 2025-08-21 21:57:44,970 - WARNING - šŸ—‘ļø Tagged orphaned directory: sarek/results-4bfb25049fdd2bf31c751bafcb6a18eddebcc1d5 +2025-08-21T21:57:45.0286483Z 2025-08-21 21:57:44,970 - INFO - Processing: circdna/results-50681adaf7c089d51071ebbebee75e07c6650965 +2025-08-21T21:57:45.0288578Z 2025-08-21 21:57:44,971 - INFO - DRY RUN: Would tag objects in circdna/results-50681adaf7c089d51071ebbebee75e07c6650965 with {'pipeline': 'circdna', 'release': '1.0.1', 'sha': '50681adaf7c089d51071ebbebee75e07c6650965', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.971016', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0290867Z 2025-08-21 21:57:44,971 - INFO - āœ… Tagged current release: circdna/results-50681adaf7c089d51071ebbebee75e07c6650965 +2025-08-21T21:57:45.0292040Z 2025-08-21 21:57:44,971 - INFO - Processing: mag/results-b582aae7d64816e08d6efae7c82ed55ea20ee7b2 +2025-08-21T21:57:45.0294055Z 2025-08-21 21:57:44,971 - INFO - DRY RUN: Would tag objects in mag/results-b582aae7d64816e08d6efae7c82ed55ea20ee7b2 with {'pipeline': 'mag', 'release': '3.2.1', 'sha': 'b582aae7d64816e08d6efae7c82ed55ea20ee7b2', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.971111', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0296408Z 2025-08-21 21:57:44,971 - INFO - āœ… Tagged current release: mag/results-b582aae7d64816e08d6efae7c82ed55ea20ee7b2 +2025-08-21T21:57:45.0297310Z 2025-08-21 21:57:44,971 - INFO - Processing: methylseq/results-dev-bwameth-GPU +2025-08-21T21:57:45.0298869Z 2025-08-21 21:57:44,971 - INFO - DRY RUN: Would tag objects in methylseq/results-dev-bwameth-GPU with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.971198', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0300811Z 2025-08-21 21:57:44,971 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-dev-bwameth-GPU +2025-08-21T21:57:45.0301757Z 2025-08-21 21:57:44,971 - INFO - Processing: rnaseq/results-5671b65af97fe78a2f9b4d05d850304918b1b86e +2025-08-21T21:57:45.0303810Z 2025-08-21 21:57:44,971 - INFO - DRY RUN: Would tag objects in rnaseq/results-5671b65af97fe78a2f9b4d05d850304918b1b86e with {'pipeline': 'rnaseq', 'release': '3.11.2', 'sha': '5671b65af97fe78a2f9b4d05d850304918b1b86e', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.971287', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0306265Z 2025-08-21 21:57:44,971 - INFO - āœ… Tagged current release: rnaseq/results-5671b65af97fe78a2f9b4d05d850304918b1b86e +2025-08-21T21:57:45.0307392Z 2025-08-21 21:57:44,971 - INFO - Processing: multiplesequencealign/results-b3540dc9b25a65fd54318d7313f7af64d6e7decd +2025-08-21T21:57:45.0309546Z 2025-08-21 21:57:44,971 - INFO - DRY RUN: Would tag objects in multiplesequencealign/results-b3540dc9b25a65fd54318d7313f7af64d6e7decd with {'pipeline': 'multiplesequencealign', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.971374', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0311987Z 2025-08-21 21:57:44,971 - WARNING - šŸ—‘ļø Tagged orphaned directory: multiplesequencealign/results-b3540dc9b25a65fd54318d7313f7af64d6e7decd +2025-08-21T21:57:45.0313203Z 2025-08-21 21:57:44,971 - INFO - Processing: phaseimpute/results-cf6d3a818cacfaf3d1b8756ab13117681b0458fa +2025-08-21T21:57:45.0315245Z 2025-08-21 21:57:44,971 - INFO - DRY RUN: Would tag objects in phaseimpute/results-cf6d3a818cacfaf3d1b8756ab13117681b0458fa with {'pipeline': 'phaseimpute', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.971462', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0317444Z 2025-08-21 21:57:44,971 - WARNING - šŸ—‘ļø Tagged orphaned directory: phaseimpute/results-cf6d3a818cacfaf3d1b8756ab13117681b0458fa +2025-08-21T21:57:45.0318703Z 2025-08-21 21:57:44,971 - INFO - Processing: methylseq/results-a79d8519e9999aa87f301cdc601fe43f19a77442-bismark_hisat-CPU +2025-08-21T21:57:45.0320804Z 2025-08-21 21:57:44,971 - INFO - DRY RUN: Would tag objects in methylseq/results-a79d8519e9999aa87f301cdc601fe43f19a77442-bismark_hisat-CPU with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.971574', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0323175Z 2025-08-21 21:57:44,971 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-a79d8519e9999aa87f301cdc601fe43f19a77442-bismark_hisat-CPU +2025-08-21T21:57:45.0324365Z 2025-08-21 21:57:44,971 - INFO - Processing: mag/results-274412afa54f477dccf4d6230506ec7de3dfaa4d +2025-08-21T21:57:45.0326667Z 2025-08-21 21:57:44,971 - INFO - DRY RUN: Would tag objects in mag/results-274412afa54f477dccf4d6230506ec7de3dfaa4d with {'pipeline': 'mag', 'release': '2.5.2', 'sha': '274412afa54f477dccf4d6230506ec7de3dfaa4d', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.971683', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0328902Z 2025-08-21 21:57:44,971 - INFO - āœ… Tagged current release: mag/results-274412afa54f477dccf4d6230506ec7de3dfaa4d +2025-08-21T21:57:45.0329928Z 2025-08-21 21:57:44,971 - INFO - Processing: cutandrun/results-6e1125d4fee4ea7c8b70ed836bb0e92a89e3305f +2025-08-21T21:57:45.0332071Z 2025-08-21 21:57:44,971 - INFO - DRY RUN: Would tag objects in cutandrun/results-6e1125d4fee4ea7c8b70ed836bb0e92a89e3305f with {'pipeline': 'cutandrun', 'release': '3.2.2', 'sha': '6e1125d4fee4ea7c8b70ed836bb0e92a89e3305f', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.971775', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0334412Z 2025-08-21 21:57:44,971 - INFO - āœ… Tagged current release: cutandrun/results-6e1125d4fee4ea7c8b70ed836bb0e92a89e3305f +2025-08-21T21:57:45.0335596Z 2025-08-21 21:57:44,971 - INFO - Processing: pixelator/results-35c594fe090df301b634011314e8d018906eb4f2 +2025-08-21T21:57:45.0337711Z 2025-08-21 21:57:44,971 - INFO - DRY RUN: Would tag objects in pixelator/results-35c594fe090df301b634011314e8d018906eb4f2 with {'pipeline': 'pixelator', 'release': '1.2.0', 'sha': '35c594fe090df301b634011314e8d018906eb4f2', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.971866', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0340191Z 2025-08-21 21:57:44,971 - INFO - āœ… Tagged current release: pixelator/results-35c594fe090df301b634011314e8d018906eb4f2 +2025-08-21T21:57:45.0341254Z 2025-08-21 21:57:44,971 - INFO - Processing: testpipeline/results-d6719749898e1895976d887b3abab4d52c9a9740 +2025-08-21T21:57:45.0343435Z 2025-08-21 21:57:44,971 - INFO - DRY RUN: Would tag objects in testpipeline/results-d6719749898e1895976d887b3abab4d52c9a9740 with {'pipeline': 'testpipeline', 'release': 'v0.1.4', 'sha': 'd6719749898e1895976d887b3abab4d52c9a9740', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.971954', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0345990Z 2025-08-21 21:57:44,971 - INFO - āœ… Tagged current release: testpipeline/results-d6719749898e1895976d887b3abab4d52c9a9740 +2025-08-21T21:57:45.0347158Z 2025-08-21 21:57:44,972 - INFO - Processing: denovotranscript/results-test-46e7a6f7d214b1f83efe09fde3ae3c929cca6eb8 +2025-08-21T21:57:45.0349272Z 2025-08-21 21:57:44,972 - INFO - DRY RUN: Would tag objects in denovotranscript/results-test-46e7a6f7d214b1f83efe09fde3ae3c929cca6eb8 with {'pipeline': 'denovotranscript', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.972043', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0351666Z 2025-08-21 21:57:44,972 - WARNING - šŸ—‘ļø Tagged orphaned directory: denovotranscript/results-test-46e7a6f7d214b1f83efe09fde3ae3c929cca6eb8 +2025-08-21T21:57:45.0352845Z 2025-08-21 21:57:44,972 - INFO - Processing: nascent/results-985f37e1030e838d692a742f45fb67aa94cb1d76 +2025-08-21T21:57:45.0354913Z 2025-08-21 21:57:44,972 - INFO - DRY RUN: Would tag objects in nascent/results-985f37e1030e838d692a742f45fb67aa94cb1d76 with {'pipeline': 'nascent', 'release': '2.0.0', 'sha': '985f37e1030e838d692a742f45fb67aa94cb1d76', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.972135', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0357333Z 2025-08-21 21:57:44,972 - INFO - āœ… Tagged current release: nascent/results-985f37e1030e838d692a742f45fb67aa94cb1d76 +2025-08-21T21:57:45.0358398Z 2025-08-21 21:57:44,972 - INFO - Processing: raredisease/results-03b5d37d54f160ea682547be41819a738eaf2116 +2025-08-21T21:57:45.0360568Z 2025-08-21 21:57:44,972 - INFO - DRY RUN: Would tag objects in raredisease/results-03b5d37d54f160ea682547be41819a738eaf2116 with {'pipeline': 'raredisease', 'release': '1.0.0', 'sha': '03b5d37d54f160ea682547be41819a738eaf2116', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.972223', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0362937Z 2025-08-21 21:57:44,972 - INFO - āœ… Tagged current release: raredisease/results-03b5d37d54f160ea682547be41819a738eaf2116 +2025-08-21T21:57:45.0364280Z 2025-08-21 21:57:44,972 - INFO - Processing: scrnaseq/results-e03cd46fc9fb54cac63c7c4f0f542d229394787d +2025-08-21T21:57:45.0366563Z 2025-08-21 21:57:44,972 - INFO - DRY RUN: Would tag objects in scrnaseq/results-e03cd46fc9fb54cac63c7c4f0f542d229394787d with {'pipeline': 'scrnaseq', 'release': '2.5.0', 'sha': 'e03cd46fc9fb54cac63c7c4f0f542d229394787d', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.972311', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0368906Z 2025-08-21 21:57:44,972 - INFO - āœ… Tagged current release: scrnaseq/results-e03cd46fc9fb54cac63c7c4f0f542d229394787d +2025-08-21T21:57:45.0369971Z 2025-08-21 21:57:44,972 - INFO - Processing: crisprseq/results-cf1dc5091c5b8f4e700bbeddbda3e19509e0489f +2025-08-21T21:57:45.0371854Z 2025-08-21 21:57:44,972 - INFO - DRY RUN: Would tag objects in crisprseq/results-cf1dc5091c5b8f4e700bbeddbda3e19509e0489f with {'pipeline': 'crisprseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.972398', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0374272Z 2025-08-21 21:57:44,972 - WARNING - šŸ—‘ļø Tagged orphaned directory: crisprseq/results-cf1dc5091c5b8f4e700bbeddbda3e19509e0489f +2025-08-21T21:57:45.0375285Z 2025-08-21 21:57:44,972 - INFO - Processing: drugresponseeval/results-test-98b1acbd6ff62c314c6786321e5c30926d7e142b +2025-08-21T21:57:45.0376509Z 2025-08-21 21:57:44,972 - INFO - DRY RUN: Would tag objects in drugresponseeval/results-test-98b1acbd6ff62c314c6786321e5c30926d7e142b with {'pipeline': 'drugresponseeval', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.972487', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0377876Z 2025-08-21 21:57:44,972 - WARNING - šŸ—‘ļø Tagged orphaned directory: drugresponseeval/results-test-98b1acbd6ff62c314c6786321e5c30926d7e142b +2025-08-21T21:57:45.0378565Z 2025-08-21 21:57:44,972 - INFO - Processing: mag/results-a8e92af70eca59a92b72262e6cdde11e69375801 +2025-08-21T21:57:45.0379714Z 2025-08-21 21:57:44,972 - INFO - DRY RUN: Would tag objects in mag/results-a8e92af70eca59a92b72262e6cdde11e69375801 with {'pipeline': 'mag', 'release': '2.2.1', 'sha': 'a8e92af70eca59a92b72262e6cdde11e69375801', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.972597', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0380981Z 2025-08-21 21:57:44,972 - INFO - āœ… Tagged current release: mag/results-a8e92af70eca59a92b72262e6cdde11e69375801 +2025-08-21T21:57:45.0381565Z 2025-08-21 21:57:44,972 - INFO - Processing: airrflow/results-8c1185f7d659d7797a66b541bb27aa5861d34991 +2025-08-21T21:57:45.0382744Z 2025-08-21 21:57:44,972 - INFO - DRY RUN: Would tag objects in airrflow/results-8c1185f7d659d7797a66b541bb27aa5861d34991 with {'pipeline': 'airrflow', 'release': '2.3.0', 'sha': '8c1185f7d659d7797a66b541bb27aa5861d34991', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.972684', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0384039Z 2025-08-21 21:57:44,972 - INFO - āœ… Tagged current release: airrflow/results-8c1185f7d659d7797a66b541bb27aa5861d34991 +2025-08-21T21:57:45.0384648Z 2025-08-21 21:57:44,972 - INFO - Processing: fetchngs/results-b79cde2fb58ec3bee3ef20124c6ade0c2f263d7d +2025-08-21T21:57:45.0385965Z 2025-08-21 21:57:44,972 - INFO - DRY RUN: Would tag objects in fetchngs/results-b79cde2fb58ec3bee3ef20124c6ade0c2f263d7d with {'pipeline': 'fetchngs', 'release': '1.7', 'sha': 'b79cde2fb58ec3bee3ef20124c6ade0c2f263d7d', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.972771', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0387291Z 2025-08-21 21:57:44,972 - INFO - āœ… Tagged current release: fetchngs/results-b79cde2fb58ec3bee3ef20124c6ade0c2f263d7d +2025-08-21T21:57:45.0387923Z 2025-08-21 21:57:44,972 - INFO - Processing: genomeassembler/results-e3f540f21df755a8a12b9859019c4a5fe472db82 +2025-08-21T21:57:45.0389193Z 2025-08-21 21:57:44,972 - INFO - DRY RUN: Would tag objects in genomeassembler/results-e3f540f21df755a8a12b9859019c4a5fe472db82 with {'pipeline': 'genomeassembler', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.972858', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0390508Z 2025-08-21 21:57:44,972 - WARNING - šŸ—‘ļø Tagged orphaned directory: genomeassembler/results-e3f540f21df755a8a12b9859019c4a5fe472db82 +2025-08-21T21:57:45.0391173Z 2025-08-21 21:57:44,972 - INFO - Processing: methylseq/results-345f43b8c1d9281335ab9e6ca240884f9d21bbab +2025-08-21T21:57:45.0392238Z 2025-08-21 21:57:44,972 - INFO - DRY RUN: Would tag objects in methylseq/results-345f43b8c1d9281335ab9e6ca240884f9d21bbab with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.972950', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0393454Z 2025-08-21 21:57:44,972 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-345f43b8c1d9281335ab9e6ca240884f9d21bbab +2025-08-21T21:57:45.0394077Z 2025-08-21 21:57:44,973 - INFO - Processing: sarek/results-5c6be78611ff40a0390952ea4bab27cd3c9d52fa +2025-08-21T21:57:45.0395202Z 2025-08-21 21:57:44,973 - INFO - DRY RUN: Would tag objects in sarek/results-5c6be78611ff40a0390952ea4bab27cd3c9d52fa with {'pipeline': 'sarek', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.973040', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0396511Z 2025-08-21 21:57:44,973 - WARNING - šŸ—‘ļø Tagged orphaned directory: sarek/results-5c6be78611ff40a0390952ea4bab27cd3c9d52fa +2025-08-21T21:57:45.0397166Z 2025-08-21 21:57:44,973 - INFO - Processing: denovotranscript/results-baeb69fd094ed125098b05dec69c4ebd2b90d701 +2025-08-21T21:57:45.0398337Z 2025-08-21 21:57:44,973 - INFO - DRY RUN: Would tag objects in denovotranscript/results-baeb69fd094ed125098b05dec69c4ebd2b90d701 with {'pipeline': 'denovotranscript', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.973129', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0399691Z 2025-08-21 21:57:44,973 - WARNING - šŸ—‘ļø Tagged orphaned directory: denovotranscript/results-baeb69fd094ed125098b05dec69c4ebd2b90d701 +2025-08-21T21:57:45.0400442Z 2025-08-21 21:57:44,973 - INFO - Processing: methylseq/results-fd056660f7680072e86ef1d7bd0ac903a377c53e-bismark_hisat-ARM +2025-08-21T21:57:45.0401642Z 2025-08-21 21:57:44,973 - INFO - DRY RUN: Would tag objects in methylseq/results-fd056660f7680072e86ef1d7bd0ac903a377c53e-bismark_hisat-ARM with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.973219', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0403001Z 2025-08-21 21:57:44,973 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-fd056660f7680072e86ef1d7bd0ac903a377c53e-bismark_hisat-ARM +2025-08-21T21:57:45.0403757Z 2025-08-21 21:57:44,973 - INFO - Processing: differentialabundance/results-3a849f046990707cad2a0df751c371ac7f1165ab +2025-08-21T21:57:45.0405297Z 2025-08-21 21:57:44,973 - INFO - DRY RUN: Would tag objects in differentialabundance/results-3a849f046990707cad2a0df751c371ac7f1165ab with {'pipeline': 'differentialabundance', 'release': '1.2.0', 'sha': '3a849f046990707cad2a0df751c371ac7f1165ab', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.973308', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0406791Z 2025-08-21 21:57:44,973 - INFO - āœ… Tagged current release: differentialabundance/results-3a849f046990707cad2a0df751c371ac7f1165ab +2025-08-21T21:57:45.0407452Z 2025-08-21 21:57:44,973 - INFO - Processing: crisprseq/results-5cfc4ee1447eaab00862f1e796b02c33baffac0d +2025-08-21T21:57:45.0408532Z 2025-08-21 21:57:44,973 - INFO - DRY RUN: Would tag objects in crisprseq/results-5cfc4ee1447eaab00862f1e796b02c33baffac0d with {'pipeline': 'crisprseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.973416', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0409761Z 2025-08-21 21:57:44,973 - WARNING - šŸ—‘ļø Tagged orphaned directory: crisprseq/results-5cfc4ee1447eaab00862f1e796b02c33baffac0d +2025-08-21T21:57:45.0410444Z 2025-08-21 21:57:44,973 - INFO - Processing: methylseq/results-335f2a865a07a4b1b084830149412e404a736db2-bwameth-ARM +2025-08-21T21:57:45.0411730Z 2025-08-21 21:57:44,973 - INFO - DRY RUN: Would tag objects in methylseq/results-335f2a865a07a4b1b084830149412e404a736db2-bwameth-ARM with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.973521', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0413055Z 2025-08-21 21:57:44,973 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-335f2a865a07a4b1b084830149412e404a736db2-bwameth-ARM +2025-08-21T21:57:45.0413721Z 2025-08-21 21:57:44,973 - INFO - Processing: rnaseq/results-91c65a2535fd9973579f4469bb028f6dfa832254 +2025-08-21T21:57:45.0414737Z 2025-08-21 21:57:44,973 - INFO - DRY RUN: Would tag objects in rnaseq/results-91c65a2535fd9973579f4469bb028f6dfa832254 with {'pipeline': 'rnaseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.973604', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0416137Z 2025-08-21 21:57:44,973 - WARNING - šŸ—‘ļø Tagged orphaned directory: rnaseq/results-91c65a2535fd9973579f4469bb028f6dfa832254 +2025-08-21T21:57:45.0416909Z 2025-08-21 21:57:44,973 - INFO - Processing: methylseq/results-test-6a6584906e915b09bfb0824458f6f789e492e2b9 +2025-08-21T21:57:45.0418021Z 2025-08-21 21:57:44,973 - INFO - DRY RUN: Would tag objects in methylseq/results-test-6a6584906e915b09bfb0824458f6f789e492e2b9 with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.973678', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0419288Z 2025-08-21 21:57:44,973 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-test-6a6584906e915b09bfb0824458f6f789e492e2b9 +2025-08-21T21:57:45.0419941Z 2025-08-21 21:57:44,973 - INFO - Processing: circdna/results-09a5015cf8d10b6f0fd6e96a3039f60e4a8b1670 +2025-08-21T21:57:45.0421128Z 2025-08-21 21:57:44,973 - INFO - DRY RUN: Would tag objects in circdna/results-09a5015cf8d10b6f0fd6e96a3039f60e4a8b1670 with {'pipeline': 'circdna', 'release': '1.0.4', 'sha': '09a5015cf8d10b6f0fd6e96a3039f60e4a8b1670', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.973758', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0422433Z 2025-08-21 21:57:44,973 - INFO - āœ… Tagged current release: circdna/results-09a5015cf8d10b6f0fd6e96a3039f60e4a8b1670 +2025-08-21T21:57:45.0423058Z 2025-08-21 21:57:44,973 - INFO - Processing: readsimulator/results-82facc6eeb399dc8fff921fe5126370154327980 +2025-08-21T21:57:45.0424311Z 2025-08-21 21:57:44,973 - INFO - DRY RUN: Would tag objects in readsimulator/results-82facc6eeb399dc8fff921fe5126370154327980 with {'pipeline': 'readsimulator', 'release': '1.0.0', 'sha': '82facc6eeb399dc8fff921fe5126370154327980', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.973837', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0425793Z 2025-08-21 21:57:44,973 - INFO - āœ… Tagged current release: readsimulator/results-82facc6eeb399dc8fff921fe5126370154327980 +2025-08-21T21:57:45.0426420Z 2025-08-21 21:57:44,973 - INFO - Processing: funcscan/results-d6773ca1902569c89da607d578eab70a1ff590b9 +2025-08-21T21:57:45.0427623Z 2025-08-21 21:57:44,973 - INFO - DRY RUN: Would tag objects in funcscan/results-d6773ca1902569c89da607d578eab70a1ff590b9 with {'pipeline': 'funcscan', 'release': '1.0.0', 'sha': 'd6773ca1902569c89da607d578eab70a1ff590b9', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.973913', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0428923Z 2025-08-21 21:57:44,973 - INFO - āœ… Tagged current release: funcscan/results-d6773ca1902569c89da607d578eab70a1ff590b9 +2025-08-21T21:57:45.0429517Z 2025-08-21 21:57:44,973 - INFO - Processing: rnaseq/results-0d93da54a54fdb2c8ca34c223d144ed288261186 +2025-08-21T21:57:45.0430550Z 2025-08-21 21:57:44,974 - INFO - DRY RUN: Would tag objects in rnaseq/results-0d93da54a54fdb2c8ca34c223d144ed288261186 with {'pipeline': 'rnaseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.973995', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0431852Z 2025-08-21 21:57:44,974 - WARNING - šŸ—‘ļø Tagged orphaned directory: rnaseq/results-0d93da54a54fdb2c8ca34c223d144ed288261186 +2025-08-21T21:57:45.0432506Z 2025-08-21 21:57:44,974 - INFO - Processing: diaproteomics/results-58b18dd02583ad4288949aa31471bcec375705cc +2025-08-21T21:57:45.0433758Z 2025-08-21 21:57:44,974 - INFO - DRY RUN: Would tag objects in diaproteomics/results-58b18dd02583ad4288949aa31471bcec375705cc with {'pipeline': 'diaproteomics', 'release': '1.2.4', 'sha': '58b18dd02583ad4288949aa31471bcec375705cc', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.974083', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0435225Z 2025-08-21 21:57:44,974 - INFO - āœ… Tagged current release: diaproteomics/results-58b18dd02583ad4288949aa31471bcec375705cc +2025-08-21T21:57:45.0435823Z 2025-08-21 21:57:44,974 - INFO - Processing: mag/results-cc4ecd46c7a9998409f575973765a8873bb71517 +2025-08-21T21:57:45.0436823Z 2025-08-21 21:57:44,974 - INFO - DRY RUN: Would tag objects in mag/results-cc4ecd46c7a9998409f575973765a8873bb71517 with {'pipeline': 'mag', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.974161', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0438091Z 2025-08-21 21:57:44,974 - WARNING - šŸ—‘ļø Tagged orphaned directory: mag/results-cc4ecd46c7a9998409f575973765a8873bb71517 +2025-08-21T21:57:45.0438702Z 2025-08-21 21:57:44,974 - INFO - Processing: smrnaseq/results-87f2b3e27deb914a3657e1067bbfbde3c2c50785 +2025-08-21T21:57:45.0439903Z 2025-08-21 21:57:44,974 - INFO - DRY RUN: Would tag objects in smrnaseq/results-87f2b3e27deb914a3657e1067bbfbde3c2c50785 with {'pipeline': 'smrnaseq', 'release': '2.2.4', 'sha': '87f2b3e27deb914a3657e1067bbfbde3c2c50785', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.974233', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0441217Z 2025-08-21 21:57:44,974 - INFO - āœ… Tagged current release: smrnaseq/results-87f2b3e27deb914a3657e1067bbfbde3c2c50785 +2025-08-21T21:57:45.0441819Z 2025-08-21 21:57:44,974 - INFO - Processing: rnaseq/results-287afcfe30a93de77e9b7cf70a1085f58c9525d8 +2025-08-21T21:57:45.0443004Z 2025-08-21 21:57:44,974 - INFO - DRY RUN: Would tag objects in rnaseq/results-287afcfe30a93de77e9b7cf70a1085f58c9525d8 with {'pipeline': 'rnaseq', 'release': '3.11.1', 'sha': '287afcfe30a93de77e9b7cf70a1085f58c9525d8', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.974300', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0444331Z 2025-08-21 21:57:44,974 - INFO - āœ… Tagged current release: rnaseq/results-287afcfe30a93de77e9b7cf70a1085f58c9525d8 +2025-08-21T21:57:45.0444917Z 2025-08-21 21:57:44,974 - INFO - Processing: sarek/results-919115fd28da375d15d2f212e82a7ea670c3f08e +2025-08-21T21:57:45.0446129Z 2025-08-21 21:57:44,974 - INFO - DRY RUN: Would tag objects in sarek/results-919115fd28da375d15d2f212e82a7ea670c3f08e with {'pipeline': 'sarek', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.974368', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0447313Z 2025-08-21 21:57:44,974 - WARNING - šŸ—‘ļø Tagged orphaned directory: sarek/results-919115fd28da375d15d2f212e82a7ea670c3f08e +2025-08-21T21:57:45.0447964Z 2025-08-21 21:57:44,974 - INFO - Processing: proteinfamilies/results-16c1ca9f4904e7930a3ee1d0cceac6a8b1e92412 +2025-08-21T21:57:45.0449114Z 2025-08-21 21:57:44,974 - INFO - DRY RUN: Would tag objects in proteinfamilies/results-16c1ca9f4904e7930a3ee1d0cceac6a8b1e92412 with {'pipeline': 'proteinfamilies', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.974443', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0450413Z 2025-08-21 21:57:44,974 - WARNING - šŸ—‘ļø Tagged orphaned directory: proteinfamilies/results-16c1ca9f4904e7930a3ee1d0cceac6a8b1e92412 +2025-08-21T21:57:45.0451069Z 2025-08-21 21:57:44,974 - INFO - Processing: eager/results-6c0c9d5dfd08c3809d09c99f85017cd809134ee0 +2025-08-21T21:57:45.0452361Z 2025-08-21 21:57:44,974 - INFO - DRY RUN: Would tag objects in eager/results-6c0c9d5dfd08c3809d09c99f85017cd809134ee0 with {'pipeline': 'eager', 'release': '2.4.3', 'sha': '6c0c9d5dfd08c3809d09c99f85017cd809134ee0', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.974544', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0453653Z 2025-08-21 21:57:44,974 - INFO - āœ… Tagged current release: eager/results-6c0c9d5dfd08c3809d09c99f85017cd809134ee0 +2025-08-21T21:57:45.0454255Z 2025-08-21 21:57:44,974 - INFO - Processing: taxprofiler/results-8949ad471b0dc855c717a220657d282204e69dc4 +2025-08-21T21:57:45.0455525Z 2025-08-21 21:57:44,974 - INFO - DRY RUN: Would tag objects in taxprofiler/results-8949ad471b0dc855c717a220657d282204e69dc4 with {'pipeline': 'taxprofiler', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.974642', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0456785Z 2025-08-21 21:57:44,974 - WARNING - šŸ—‘ļø Tagged orphaned directory: taxprofiler/results-8949ad471b0dc855c717a220657d282204e69dc4 +2025-08-21T21:57:45.0457423Z 2025-08-21 21:57:44,974 - INFO - Processing: airrflow/results-73112f91f3611bec4c936bcef67d24c6e4e134ce +2025-08-21T21:57:45.0458641Z 2025-08-21 21:57:44,974 - INFO - DRY RUN: Would tag objects in airrflow/results-73112f91f3611bec4c936bcef67d24c6e4e134ce with {'pipeline': 'airrflow', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.974732', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0459856Z 2025-08-21 21:57:44,974 - WARNING - šŸ—‘ļø Tagged orphaned directory: airrflow/results-73112f91f3611bec4c936bcef67d24c6e4e134ce +2025-08-21T21:57:45.0460467Z 2025-08-21 21:57:44,974 - INFO - Processing: mag/results-dc2557b6362a02f8114c01ce7127f07385b53a96 +2025-08-21T21:57:45.0461457Z 2025-08-21 21:57:44,974 - INFO - DRY RUN: Would tag objects in mag/results-dc2557b6362a02f8114c01ce7127f07385b53a96 with {'pipeline': 'mag', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.974814', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0462597Z 2025-08-21 21:57:44,974 - WARNING - šŸ—‘ļø Tagged orphaned directory: mag/results-dc2557b6362a02f8114c01ce7127f07385b53a96 +2025-08-21T21:57:45.0463251Z 2025-08-21 21:57:44,974 - INFO - Processing: testpipeline/results-test-c6b64f96dd6f32c5246c887851f8f588a9331171 +2025-08-21T21:57:45.0464396Z 2025-08-21 21:57:44,974 - INFO - DRY RUN: Would tag objects in testpipeline/results-test-c6b64f96dd6f32c5246c887851f8f588a9331171 with {'pipeline': 'testpipeline', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.974895', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0465808Z 2025-08-21 21:57:44,974 - WARNING - šŸ—‘ļø Tagged orphaned directory: testpipeline/results-test-c6b64f96dd6f32c5246c887851f8f588a9331171 +2025-08-21T21:57:45.0466474Z 2025-08-21 21:57:44,974 - INFO - Processing: isoseq/results-f191d29c552e236fb66b0ce9b80ffd7a70dc0f58 +2025-08-21T21:57:45.0467657Z 2025-08-21 21:57:44,974 - INFO - DRY RUN: Would tag objects in isoseq/results-f191d29c552e236fb66b0ce9b80ffd7a70dc0f58 with {'pipeline': 'isoseq', 'release': '1.1.0', 'sha': 'f191d29c552e236fb66b0ce9b80ffd7a70dc0f58', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.974977', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0468955Z 2025-08-21 21:57:44,975 - INFO - āœ… Tagged current release: isoseq/results-f191d29c552e236fb66b0ce9b80ffd7a70dc0f58 +2025-08-21T21:57:45.0469545Z 2025-08-21 21:57:44,975 - INFO - Processing: ampliseq/results-4707d384dc73406255a2612d4c128748a96244c8 +2025-08-21T21:57:45.0470582Z 2025-08-21 21:57:44,975 - INFO - DRY RUN: Would tag objects in ampliseq/results-4707d384dc73406255a2612d4c128748a96244c8 with {'pipeline': 'ampliseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.975058', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0471772Z 2025-08-21 21:57:44,975 - WARNING - šŸ—‘ļø Tagged orphaned directory: ampliseq/results-4707d384dc73406255a2612d4c128748a96244c8 +2025-08-21T21:57:45.0472413Z 2025-08-21 21:57:44,975 - INFO - Processing: proteinfold/results-22862926c87fceb2a96ecbece6a4e61600b7f4c9 +2025-08-21T21:57:45.0473623Z 2025-08-21 21:57:44,975 - INFO - DRY RUN: Would tag objects in proteinfold/results-22862926c87fceb2a96ecbece6a4e61600b7f4c9 with {'pipeline': 'proteinfold', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.975140', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0474877Z 2025-08-21 21:57:44,975 - WARNING - šŸ—‘ļø Tagged orphaned directory: proteinfold/results-22862926c87fceb2a96ecbece6a4e61600b7f4c9 +2025-08-21T21:57:45.0475679Z 2025-08-21 21:57:44,975 - INFO - Processing: differentialabundance/results-a3d664c12c4050bae2acc83b1c636dcc3546b9a5 +2025-08-21T21:57:45.0477043Z 2025-08-21 21:57:44,975 - INFO - DRY RUN: Would tag objects in differentialabundance/results-a3d664c12c4050bae2acc83b1c636dcc3546b9a5 with {'pipeline': 'differentialabundance', 'release': '1.4.0', 'sha': 'a3d664c12c4050bae2acc83b1c636dcc3546b9a5', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.975222', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0478538Z 2025-08-21 21:57:44,975 - INFO - āœ… Tagged current release: differentialabundance/results-a3d664c12c4050bae2acc83b1c636dcc3546b9a5 +2025-08-21T21:57:45.0479330Z 2025-08-21 21:57:44,975 - INFO - Processing: crisprseq/results-c2ed37c370ea0f4394bff2a14e6825acfede3839 +2025-08-21T21:57:45.0480551Z 2025-08-21 21:57:44,975 - INFO - DRY RUN: Would tag objects in crisprseq/results-c2ed37c370ea0f4394bff2a14e6825acfede3839 with {'pipeline': 'crisprseq', 'release': '2.2.0', 'sha': 'c2ed37c370ea0f4394bff2a14e6825acfede3839', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.975301', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0481886Z 2025-08-21 21:57:44,975 - INFO - āœ… Tagged current release: crisprseq/results-c2ed37c370ea0f4394bff2a14e6825acfede3839 +2025-08-21T21:57:45.0482496Z 2025-08-21 21:57:44,975 - INFO - Processing: atacseq/results-1a1dbe52ffbd82256c941a032b0e22abbd925b8a +2025-08-21T21:57:45.0483689Z 2025-08-21 21:57:44,975 - INFO - DRY RUN: Would tag objects in atacseq/results-1a1dbe52ffbd82256c941a032b0e22abbd925b8a with {'pipeline': 'atacseq', 'release': '2.1.2', 'sha': '1a1dbe52ffbd82256c941a032b0e22abbd925b8a', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.975377', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0485173Z 2025-08-21 21:57:44,975 - INFO - āœ… Tagged current release: atacseq/results-1a1dbe52ffbd82256c941a032b0e22abbd925b8a +2025-08-21T21:57:45.0485789Z 2025-08-21 21:57:44,975 - INFO - Processing: mag/results-aac4962a09b1815c27ca88bb8bf6f64e7b78505f +2025-08-21T21:57:45.0486930Z 2025-08-21 21:57:44,975 - INFO - DRY RUN: Would tag objects in mag/results-aac4962a09b1815c27ca88bb8bf6f64e7b78505f with {'pipeline': 'mag', 'release': '3.0.1', 'sha': 'aac4962a09b1815c27ca88bb8bf6f64e7b78505f', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.975456', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0488190Z 2025-08-21 21:57:44,975 - INFO - āœ… Tagged current release: mag/results-aac4962a09b1815c27ca88bb8bf6f64e7b78505f +2025-08-21T21:57:45.0488801Z 2025-08-21 21:57:44,975 - INFO - Processing: oncoanalyser/results-8f8ffa24ffde97d1a16215292289d2f2c1ed9fda +2025-08-21T21:57:45.0489910Z 2025-08-21 21:57:44,975 - INFO - DRY RUN: Would tag objects in oncoanalyser/results-8f8ffa24ffde97d1a16215292289d2f2c1ed9fda with {'pipeline': 'oncoanalyser', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.975559', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0491168Z 2025-08-21 21:57:44,975 - WARNING - šŸ—‘ļø Tagged orphaned directory: oncoanalyser/results-8f8ffa24ffde97d1a16215292289d2f2c1ed9fda +2025-08-21T21:57:45.0491804Z 2025-08-21 21:57:44,975 - INFO - Processing: sarek/results-f034b737630972e90aeae851e236f9d4292b9a4f +2025-08-21T21:57:45.0492973Z 2025-08-21 21:57:44,975 - INFO - DRY RUN: Would tag objects in sarek/results-f034b737630972e90aeae851e236f9d4292b9a4f with {'pipeline': 'sarek', 'release': '3.3.2', 'sha': 'f034b737630972e90aeae851e236f9d4292b9a4f', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.975641', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0494394Z 2025-08-21 21:57:44,975 - INFO - āœ… Tagged current release: sarek/results-f034b737630972e90aeae851e236f9d4292b9a4f +2025-08-21T21:57:45.0495153Z 2025-08-21 21:57:44,975 - INFO - Processing: fetchngs/results-04ee5031a4941b5fc52c158847cf797b45977965 +2025-08-21T21:57:45.0496379Z 2025-08-21 21:57:44,975 - INFO - DRY RUN: Would tag objects in fetchngs/results-04ee5031a4941b5fc52c158847cf797b45977965 with {'pipeline': 'fetchngs', 'release': '1.11.0', 'sha': '04ee5031a4941b5fc52c158847cf797b45977965', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.975720', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0497700Z 2025-08-21 21:57:44,975 - INFO - āœ… Tagged current release: fetchngs/results-04ee5031a4941b5fc52c158847cf797b45977965 +2025-08-21T21:57:45.0498294Z 2025-08-21 21:57:44,975 - INFO - Processing: rnaseq/results-b89fac32650aacc86fcda9ee77e00612a1d77066 +2025-08-21T21:57:45.0499495Z 2025-08-21 21:57:44,975 - INFO - DRY RUN: Would tag objects in rnaseq/results-b89fac32650aacc86fcda9ee77e00612a1d77066 with {'pipeline': 'rnaseq', 'release': '3.14.0', 'sha': 'b89fac32650aacc86fcda9ee77e00612a1d77066', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.975799', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0500966Z 2025-08-21 21:57:44,975 - INFO - āœ… Tagged current release: rnaseq/results-b89fac32650aacc86fcda9ee77e00612a1d77066 +2025-08-21T21:57:45.0501569Z 2025-08-21 21:57:44,975 - INFO - Processing: methylseq/results-d7578f04cbd0c345fc26e219baf8c72316981af7 +2025-08-21T21:57:45.0502637Z 2025-08-21 21:57:44,975 - INFO - DRY RUN: Would tag objects in methylseq/results-d7578f04cbd0c345fc26e219baf8c72316981af7 with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.975878', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0503860Z 2025-08-21 21:57:44,975 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-d7578f04cbd0c345fc26e219baf8c72316981af7 +2025-08-21T21:57:45.0504420Z 2025-08-21 21:57:44,975 - INFO - Processing: methylong/results-dev +2025-08-21T21:57:45.0505361Z 2025-08-21 21:57:44,975 - INFO - DRY RUN: Would tag objects in methylong/results-dev with {'pipeline': 'methylong', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.975964', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0506308Z 2025-08-21 21:57:44,975 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylong/results-dev +2025-08-21T21:57:45.0506862Z 2025-08-21 21:57:44,976 - INFO - Processing: denovotranscript/results-28487c6397c8f157b11ef65a373aa4469141040a +2025-08-21T21:57:45.0508158Z 2025-08-21 21:57:44,976 - INFO - DRY RUN: Would tag objects in denovotranscript/results-28487c6397c8f157b11ef65a373aa4469141040a with {'pipeline': 'denovotranscript', 'release': '1.2.0', 'sha': '28487c6397c8f157b11ef65a373aa4469141040a', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.976046', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0509579Z 2025-08-21 21:57:44,976 - INFO - āœ… Tagged current release: denovotranscript/results-28487c6397c8f157b11ef65a373aa4469141040a +2025-08-21T21:57:45.0510226Z 2025-08-21 21:57:44,976 - INFO - Processing: pixelator/results-436f974c6cd8543b6a3db9fda6aa3e6ae142427a +2025-08-21T21:57:45.0511444Z 2025-08-21 21:57:44,976 - INFO - DRY RUN: Would tag objects in pixelator/results-436f974c6cd8543b6a3db9fda6aa3e6ae142427a with {'pipeline': 'pixelator', 'release': '1.0.2', 'sha': '436f974c6cd8543b6a3db9fda6aa3e6ae142427a', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.976125', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0512780Z 2025-08-21 21:57:44,976 - INFO - āœ… Tagged current release: pixelator/results-436f974c6cd8543b6a3db9fda6aa3e6ae142427a +2025-08-21T21:57:45.0513390Z 2025-08-21 21:57:44,976 - INFO - Processing: airrflow/results-db47eaaaed3c4b51f128fd76414d7465911acc32 +2025-08-21T21:57:45.0514565Z 2025-08-21 21:57:44,976 - INFO - DRY RUN: Would tag objects in airrflow/results-db47eaaaed3c4b51f128fd76414d7465911acc32 with {'pipeline': 'airrflow', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.976203', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0515901Z 2025-08-21 21:57:44,976 - WARNING - šŸ—‘ļø Tagged orphaned directory: airrflow/results-db47eaaaed3c4b51f128fd76414d7465911acc32 +2025-08-21T21:57:45.0516537Z 2025-08-21 21:57:44,976 - INFO - Processing: cutandrun/results-c30a37fd57dcd717870c1ce947bc157ca3a88838 +2025-08-21T21:57:45.0517744Z 2025-08-21 21:57:44,976 - INFO - DRY RUN: Would tag objects in cutandrun/results-c30a37fd57dcd717870c1ce947bc157ca3a88838 with {'pipeline': 'cutandrun', 'release': '1.1', 'sha': 'c30a37fd57dcd717870c1ce947bc157ca3a88838', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.976284', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0519077Z 2025-08-21 21:57:44,976 - INFO - āœ… Tagged current release: cutandrun/results-c30a37fd57dcd717870c1ce947bc157ca3a88838 +2025-08-21T21:57:45.0519704Z 2025-08-21 21:57:44,976 - INFO - Processing: fastqrepair/results-5f102cae4cfaa1d9281b9702ccc3738d9974e388 +2025-08-21T21:57:45.0521091Z 2025-08-21 21:57:44,976 - INFO - DRY RUN: Would tag objects in fastqrepair/results-5f102cae4cfaa1d9281b9702ccc3738d9974e388 with {'pipeline': 'fastqrepair', 'release': '1.0.0', 'sha': '5f102cae4cfaa1d9281b9702ccc3738d9974e388', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.976365', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0522456Z 2025-08-21 21:57:44,976 - INFO - āœ… Tagged current release: fastqrepair/results-5f102cae4cfaa1d9281b9702ccc3738d9974e388 +2025-08-21T21:57:45.0523072Z 2025-08-21 21:57:44,976 - INFO - Processing: ampliseq/results-ce4d7f4bbe876be0d942cd597614143bf1677030 +2025-08-21T21:57:45.0524272Z 2025-08-21 21:57:44,976 - INFO - DRY RUN: Would tag objects in ampliseq/results-ce4d7f4bbe876be0d942cd597614143bf1677030 with {'pipeline': 'ampliseq', 'release': '2.0.0', 'sha': 'ce4d7f4bbe876be0d942cd597614143bf1677030', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.976444', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0525825Z 2025-08-21 21:57:44,976 - INFO - āœ… Tagged current release: ampliseq/results-ce4d7f4bbe876be0d942cd597614143bf1677030 +2025-08-21T21:57:45.0526429Z 2025-08-21 21:57:44,976 - INFO - Processing: nanoseq/results-0a2fb82679ed0edda7c2ee98a27d9a2c3140b1de +2025-08-21T21:57:45.0527481Z 2025-08-21 21:57:44,976 - INFO - DRY RUN: Would tag objects in nanoseq/results-0a2fb82679ed0edda7c2ee98a27d9a2c3140b1de with {'pipeline': 'nanoseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.976545', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0528690Z 2025-08-21 21:57:44,976 - WARNING - šŸ—‘ļø Tagged orphaned directory: nanoseq/results-0a2fb82679ed0edda7c2ee98a27d9a2c3140b1de +2025-08-21T21:57:45.0529310Z 2025-08-21 21:57:44,976 - INFO - Processing: eager/results-10bfbdff86607f816c4e1819e8ede0f5f00ea2ac +2025-08-21T21:57:45.0530489Z 2025-08-21 21:57:44,976 - INFO - DRY RUN: Would tag objects in eager/results-10bfbdff86607f816c4e1819e8ede0f5f00ea2ac with {'pipeline': 'eager', 'release': '2.3.4', 'sha': '10bfbdff86607f816c4e1819e8ede0f5f00ea2ac', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.976628', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0531777Z 2025-08-21 21:57:44,976 - INFO - āœ… Tagged current release: eager/results-10bfbdff86607f816c4e1819e8ede0f5f00ea2ac +2025-08-21T21:57:45.0532288Z 2025-08-21 21:57:44,976 - INFO - Processing: testpipeline/results-dev +2025-08-21T21:57:45.0533144Z 2025-08-21 21:57:44,976 - INFO - DRY RUN: Would tag objects in testpipeline/results-dev with {'pipeline': 'testpipeline', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.976708', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0534117Z 2025-08-21 21:57:44,976 - WARNING - šŸ—‘ļø Tagged orphaned directory: testpipeline/results-dev +2025-08-21T21:57:45.0534648Z 2025-08-21 21:57:44,976 - INFO - Processing: sarek/results-75fe254f0b5d93d1f3f0173f2163afa83686f6fd +2025-08-21T21:57:45.0536146Z 2025-08-21 21:57:44,976 - INFO - DRY RUN: Would tag objects in sarek/results-75fe254f0b5d93d1f3f0173f2163afa83686f6fd with {'pipeline': 'sarek', 'release': '2.6', 'sha': '75fe254f0b5d93d1f3f0173f2163afa83686f6fd', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.976787', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0537459Z 2025-08-21 21:57:44,976 - INFO - āœ… Tagged current release: sarek/results-75fe254f0b5d93d1f3f0173f2163afa83686f6fd +2025-08-21T21:57:45.0538061Z 2025-08-21 21:57:44,976 - INFO - Processing: rnasplice/results-2b7adfa697f8c2f34bd39f3dfb8ddfdb83fc390e +2025-08-21T21:57:45.0539298Z 2025-08-21 21:57:44,976 - INFO - DRY RUN: Would tag objects in rnasplice/results-2b7adfa697f8c2f34bd39f3dfb8ddfdb83fc390e with {'pipeline': 'rnasplice', 'release': '1.0.3', 'sha': '2b7adfa697f8c2f34bd39f3dfb8ddfdb83fc390e', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.976865', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0540653Z 2025-08-21 21:57:44,976 - INFO - āœ… Tagged current release: rnasplice/results-2b7adfa697f8c2f34bd39f3dfb8ddfdb83fc390e +2025-08-21T21:57:45.0541453Z 2025-08-21 21:57:44,976 - INFO - Processing: nanostring/results-baf7623e6854724f62eaa82e40f91905d210ca2d +2025-08-21T21:57:45.0542668Z 2025-08-21 21:57:44,976 - INFO - DRY RUN: Would tag objects in nanostring/results-baf7623e6854724f62eaa82e40f91905d210ca2d with {'pipeline': 'nanostring', 'release': '1.0.0', 'sha': 'baf7623e6854724f62eaa82e40f91905d210ca2d', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.976944', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0544042Z 2025-08-21 21:57:44,976 - INFO - āœ… Tagged current release: nanostring/results-baf7623e6854724f62eaa82e40f91905d210ca2d +2025-08-21T21:57:45.0544719Z 2025-08-21 21:57:44,977 - INFO - Processing: methylseq/results-a79d8519e9999aa87f301cdc601fe43f19a77442-bismark_hisat-ARM +2025-08-21T21:57:45.0546028Z 2025-08-21 21:57:44,977 - INFO - DRY RUN: Would tag objects in methylseq/results-a79d8519e9999aa87f301cdc601fe43f19a77442-bismark_hisat-ARM with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.977024', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0547413Z 2025-08-21 21:57:44,977 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-a79d8519e9999aa87f301cdc601fe43f19a77442-bismark_hisat-ARM +2025-08-21T21:57:45.0548123Z 2025-08-21 21:57:44,977 - INFO - Processing: riboseq/results-3d3e57978c5e0a418e56728496b6cc12700e6443 +2025-08-21T21:57:45.0549304Z 2025-08-21 21:57:44,977 - INFO - DRY RUN: Would tag objects in riboseq/results-3d3e57978c5e0a418e56728496b6cc12700e6443 with {'pipeline': 'riboseq', 'release': '1.0.1', 'sha': '3d3e57978c5e0a418e56728496b6cc12700e6443', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.977105', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0550596Z 2025-08-21 21:57:44,977 - INFO - āœ… Tagged current release: riboseq/results-3d3e57978c5e0a418e56728496b6cc12700e6443 +2025-08-21T21:57:45.0551215Z 2025-08-21 21:57:44,977 - INFO - Processing: viralrecon/results-fbcb2ce94c9abded00d9fcb5181daa17b9ecd55e +2025-08-21T21:57:45.0552463Z 2025-08-21 21:57:44,977 - INFO - DRY RUN: Would tag objects in viralrecon/results-fbcb2ce94c9abded00d9fcb5181daa17b9ecd55e with {'pipeline': 'viralrecon', 'release': '2.4', 'sha': 'fbcb2ce94c9abded00d9fcb5181daa17b9ecd55e', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.977182', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0553819Z 2025-08-21 21:57:44,977 - INFO - āœ… Tagged current release: viralrecon/results-fbcb2ce94c9abded00d9fcb5181daa17b9ecd55e +2025-08-21T21:57:45.0554440Z 2025-08-21 21:57:44,977 - INFO - Processing: fastquorum/results-65adcb4e187aa78540d1d1fd245752337dfa11e8 +2025-08-21T21:57:45.0555607Z 2025-08-21 21:57:44,977 - INFO - DRY RUN: Would tag objects in fastquorum/results-65adcb4e187aa78540d1d1fd245752337dfa11e8 with {'pipeline': 'fastquorum', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.977259', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0556975Z 2025-08-21 21:57:44,977 - WARNING - šŸ—‘ļø Tagged orphaned directory: fastquorum/results-65adcb4e187aa78540d1d1fd245752337dfa11e8 +2025-08-21T21:57:45.0557632Z 2025-08-21 21:57:44,977 - INFO - Processing: nanoseq/results-73cbe193e9cd19610daa0fa0b00db603acd76750 +2025-08-21T21:57:45.0558821Z 2025-08-21 21:57:44,977 - INFO - DRY RUN: Would tag objects in nanoseq/results-73cbe193e9cd19610daa0fa0b00db603acd76750 with {'pipeline': 'nanoseq', 'release': '2.0.0', 'sha': '73cbe193e9cd19610daa0fa0b00db603acd76750', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.977339', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0560137Z 2025-08-21 21:57:44,977 - INFO - āœ… Tagged current release: nanoseq/results-73cbe193e9cd19610daa0fa0b00db603acd76750 +2025-08-21T21:57:45.0560775Z 2025-08-21 21:57:44,977 - INFO - Processing: taxprofiler/results-test-07b926a89e68bc1b0720170c0996a48b7eed618d +2025-08-21T21:57:45.0561916Z 2025-08-21 21:57:44,977 - INFO - DRY RUN: Would tag objects in taxprofiler/results-test-07b926a89e68bc1b0720170c0996a48b7eed618d with {'pipeline': 'taxprofiler', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.977418', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0563322Z 2025-08-21 21:57:44,977 - WARNING - šŸ—‘ļø Tagged orphaned directory: taxprofiler/results-test-07b926a89e68bc1b0720170c0996a48b7eed618d +2025-08-21T21:57:45.0563991Z 2025-08-21 21:57:44,977 - INFO - Processing: methylseq/results-c9729e4b64db1c7ea50920a27dd8c5e3fbdd64f4 +2025-08-21T21:57:45.0565240Z 2025-08-21 21:57:44,977 - INFO - DRY RUN: Would tag objects in methylseq/results-c9729e4b64db1c7ea50920a27dd8c5e3fbdd64f4 with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.977524', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0566484Z 2025-08-21 21:57:44,977 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-c9729e4b64db1c7ea50920a27dd8c5e3fbdd64f4 +2025-08-21T21:57:45.0567166Z 2025-08-21 21:57:44,977 - INFO - Processing: drugresponseeval/results-d8695a4701ba2a4f4c575aece3bb292c66317502 +2025-08-21T21:57:45.0568322Z 2025-08-21 21:57:44,977 - INFO - DRY RUN: Would tag objects in drugresponseeval/results-d8695a4701ba2a4f4c575aece3bb292c66317502 with {'pipeline': 'drugresponseeval', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.977615', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0569643Z 2025-08-21 21:57:44,977 - WARNING - šŸ—‘ļø Tagged orphaned directory: drugresponseeval/results-d8695a4701ba2a4f4c575aece3bb292c66317502 +2025-08-21T21:57:45.0570310Z 2025-08-21 21:57:44,977 - INFO - Processing: rnaseq/results-e0dfce9af5c2299bcc2b8a74b6559ce055965455 +2025-08-21T21:57:45.0571492Z 2025-08-21 21:57:44,977 - INFO - DRY RUN: Would tag objects in rnaseq/results-e0dfce9af5c2299bcc2b8a74b6559ce055965455 with {'pipeline': 'rnaseq', 'release': '3.7', 'sha': 'e0dfce9af5c2299bcc2b8a74b6559ce055965455', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.977698', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0572798Z 2025-08-21 21:57:44,977 - INFO - āœ… Tagged current release: rnaseq/results-e0dfce9af5c2299bcc2b8a74b6559ce055965455 +2025-08-21T21:57:45.0573396Z 2025-08-21 21:57:44,977 - INFO - Processing: sarek/results-bcd7bf9cb98cddec27bb54fb47ee122c09388c02 +2025-08-21T21:57:45.0574579Z 2025-08-21 21:57:44,977 - INFO - DRY RUN: Would tag objects in sarek/results-bcd7bf9cb98cddec27bb54fb47ee122c09388c02 with {'pipeline': 'sarek', 'release': '3.0.2', 'sha': 'bcd7bf9cb98cddec27bb54fb47ee122c09388c02', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.977777', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0576060Z 2025-08-21 21:57:44,977 - INFO - āœ… Tagged current release: sarek/results-bcd7bf9cb98cddec27bb54fb47ee122c09388c02 +2025-08-21T21:57:45.0576693Z 2025-08-21 21:57:44,977 - INFO - Processing: genomeassembler/results-bd82c7b62702ff088ab3fcdc157a97ff9477ff1d +2025-08-21T21:57:45.0577978Z 2025-08-21 21:57:44,977 - INFO - DRY RUN: Would tag objects in genomeassembler/results-bd82c7b62702ff088ab3fcdc157a97ff9477ff1d with {'pipeline': 'genomeassembler', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.977856', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0579302Z 2025-08-21 21:57:44,977 - WARNING - šŸ—‘ļø Tagged orphaned directory: genomeassembler/results-bd82c7b62702ff088ab3fcdc157a97ff9477ff1d +2025-08-21T21:57:45.0579970Z 2025-08-21 21:57:44,977 - INFO - Processing: cutandrun/results-5b9f4fad41d11e98cbbfa30359a6e494f8f77694 +2025-08-21T21:57:45.0581184Z 2025-08-21 21:57:44,977 - INFO - DRY RUN: Would tag objects in cutandrun/results-5b9f4fad41d11e98cbbfa30359a6e494f8f77694 with {'pipeline': 'cutandrun', 'release': '1.0.0', 'sha': '5b9f4fad41d11e98cbbfa30359a6e494f8f77694', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.977937', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0582520Z 2025-08-21 21:57:44,977 - INFO - āœ… Tagged current release: cutandrun/results-5b9f4fad41d11e98cbbfa30359a6e494f8f77694 +2025-08-21T21:57:45.0583272Z 2025-08-21 21:57:44,977 - INFO - Processing: mag/results-fa4f841f32a01d21d4eeb68f16b8c81c86ce45ee +2025-08-21T21:57:45.0584278Z 2025-08-21 21:57:44,978 - INFO - DRY RUN: Would tag objects in mag/results-fa4f841f32a01d21d4eeb68f16b8c81c86ce45ee with {'pipeline': 'mag', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.978018', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0585540Z 2025-08-21 21:57:44,978 - WARNING - šŸ—‘ļø Tagged orphaned directory: mag/results-fa4f841f32a01d21d4eeb68f16b8c81c86ce45ee +2025-08-21T21:57:45.0586139Z 2025-08-21 21:57:44,978 - INFO - Processing: mag/results-fef6562d43446249bd7f109f637bd43df0965ada +2025-08-21T21:57:45.0587131Z 2025-08-21 21:57:44,978 - INFO - DRY RUN: Would tag objects in mag/results-fef6562d43446249bd7f109f637bd43df0965ada with {'pipeline': 'mag', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.978101', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0588284Z 2025-08-21 21:57:44,978 - WARNING - šŸ—‘ļø Tagged orphaned directory: mag/results-fef6562d43446249bd7f109f637bd43df0965ada +2025-08-21T21:57:45.0588919Z 2025-08-21 21:57:44,978 - INFO - Processing: taxprofiler/results-eaef6ac9bcfef0ae173919e45178415b9d3526fa +2025-08-21T21:57:45.0590168Z 2025-08-21 21:57:44,978 - INFO - DRY RUN: Would tag objects in taxprofiler/results-eaef6ac9bcfef0ae173919e45178415b9d3526fa with {'pipeline': 'taxprofiler', 'release': '1.0.0', 'sha': 'eaef6ac9bcfef0ae173919e45178415b9d3526fa', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.978184', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0591528Z 2025-08-21 21:57:44,978 - INFO - āœ… Tagged current release: taxprofiler/results-eaef6ac9bcfef0ae173919e45178415b9d3526fa +2025-08-21T21:57:45.0592151Z 2025-08-21 21:57:44,978 - INFO - Processing: rnasplice/results-8fb78b2329622d4d2f3983a2e7f007ebad13392c +2025-08-21T21:57:45.0593361Z 2025-08-21 21:57:44,978 - INFO - DRY RUN: Would tag objects in rnasplice/results-8fb78b2329622d4d2f3983a2e7f007ebad13392c with {'pipeline': 'rnasplice', 'release': '1.0.0', 'sha': '8fb78b2329622d4d2f3983a2e7f007ebad13392c', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.978262', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0594695Z 2025-08-21 21:57:44,978 - INFO - āœ… Tagged current release: rnasplice/results-8fb78b2329622d4d2f3983a2e7f007ebad13392c +2025-08-21T21:57:45.0595384Z 2025-08-21 21:57:44,978 - INFO - Processing: scrnaseq/results-c6ec2175a8f5d593c00136835c45c6291821fe11 +2025-08-21T21:57:45.0596569Z 2025-08-21 21:57:44,978 - INFO - DRY RUN: Would tag objects in scrnaseq/results-c6ec2175a8f5d593c00136835c45c6291821fe11 with {'pipeline': 'scrnaseq', 'release': '2.2.0', 'sha': 'c6ec2175a8f5d593c00136835c45c6291821fe11', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.978339', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0597867Z 2025-08-21 21:57:44,978 - INFO - āœ… Tagged current release: scrnaseq/results-c6ec2175a8f5d593c00136835c45c6291821fe11 +2025-08-21T21:57:45.0598586Z 2025-08-21 21:57:44,978 - INFO - Processing: funcscan/results-1c1c9ae408ba78b8ec74ed33da5ba1ef0bf57eb1 +2025-08-21T21:57:45.0599808Z 2025-08-21 21:57:44,978 - INFO - DRY RUN: Would tag objects in funcscan/results-1c1c9ae408ba78b8ec74ed33da5ba1ef0bf57eb1 with {'pipeline': 'funcscan', 'release': '1.1.0', 'sha': '1c1c9ae408ba78b8ec74ed33da5ba1ef0bf57eb1', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.978416', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0601131Z 2025-08-21 21:57:44,978 - INFO - āœ… Tagged current release: funcscan/results-1c1c9ae408ba78b8ec74ed33da5ba1ef0bf57eb1 +2025-08-21T21:57:45.0601736Z 2025-08-21 21:57:44,978 - INFO - Processing: rnafusion/results-13cf83db3583d5513766015b84e1b6b1d392fcc7 +2025-08-21T21:57:45.0602941Z 2025-08-21 21:57:44,978 - INFO - DRY RUN: Would tag objects in rnafusion/results-13cf83db3583d5513766015b84e1b6b1d392fcc7 with {'pipeline': 'rnafusion', 'release': '2.3.2', 'sha': '13cf83db3583d5513766015b84e1b6b1d392fcc7', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.978510', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0604373Z 2025-08-21 21:57:44,978 - INFO - āœ… Tagged current release: rnafusion/results-13cf83db3583d5513766015b84e1b6b1d392fcc7 +2025-08-21T21:57:45.0605108Z 2025-08-21 21:57:44,978 - INFO - Processing: sarek/results-334782319f63ee1f22f60039cb598edaee5ae32d +2025-08-21T21:57:45.0606179Z 2025-08-21 21:57:44,978 - INFO - DRY RUN: Would tag objects in sarek/results-334782319f63ee1f22f60039cb598edaee5ae32d with {'pipeline': 'sarek', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.978605', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0607351Z 2025-08-21 21:57:44,978 - WARNING - šŸ—‘ļø Tagged orphaned directory: sarek/results-334782319f63ee1f22f60039cb598edaee5ae32d +2025-08-21T21:57:45.0607975Z 2025-08-21 21:57:44,978 - INFO - Processing: airrflow/results-2345dda77e7a4bc601b65b5d182a6efed7acc845 +2025-08-21T21:57:45.0609038Z 2025-08-21 21:57:44,978 - INFO - DRY RUN: Would tag objects in airrflow/results-2345dda77e7a4bc601b65b5d182a6efed7acc845 with {'pipeline': 'airrflow', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.978697', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0610257Z 2025-08-21 21:57:44,978 - WARNING - šŸ—‘ļø Tagged orphaned directory: airrflow/results-2345dda77e7a4bc601b65b5d182a6efed7acc845 +2025-08-21T21:57:45.0610884Z 2025-08-21 21:57:44,978 - INFO - Processing: fetchngs/results-249210f1856edaf4713430ebc42d6bdf60561d7a +2025-08-21T21:57:45.0612060Z 2025-08-21 21:57:44,978 - INFO - DRY RUN: Would tag objects in fetchngs/results-249210f1856edaf4713430ebc42d6bdf60561d7a with {'pipeline': 'fetchngs', 'release': '1.8', 'sha': '249210f1856edaf4713430ebc42d6bdf60561d7a', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.978788', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0613361Z 2025-08-21 21:57:44,978 - INFO - āœ… Tagged current release: fetchngs/results-249210f1856edaf4713430ebc42d6bdf60561d7a +2025-08-21T21:57:45.0613980Z 2025-08-21 21:57:44,978 - INFO - Processing: nanostring/results-b13f05af2c57037c0b34a2098d18e2fd07fad481 +2025-08-21T21:57:45.0615373Z 2025-08-21 21:57:44,978 - INFO - DRY RUN: Would tag objects in nanostring/results-b13f05af2c57037c0b34a2098d18e2fd07fad481 with {'pipeline': 'nanostring', 'release': '1.1.0', 'sha': 'b13f05af2c57037c0b34a2098d18e2fd07fad481', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.978876', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0616719Z 2025-08-21 21:57:44,978 - INFO - āœ… Tagged current release: nanostring/results-b13f05af2c57037c0b34a2098d18e2fd07fad481 +2025-08-21T21:57:45.0617258Z 2025-08-21 21:57:44,978 - INFO - Processing: airrflow/results-test-nofusion +2025-08-21T21:57:45.0618138Z 2025-08-21 21:57:44,978 - INFO - DRY RUN: Would tag objects in airrflow/results-test-nofusion with {'pipeline': 'airrflow', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.978965', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0619275Z 2025-08-21 21:57:44,979 - WARNING - šŸ—‘ļø Tagged orphaned directory: airrflow/results-test-nofusion +2025-08-21T21:57:45.0619834Z 2025-08-21 21:57:44,979 - INFO - Processing: airrflow/results-9a7ffb234dd84fec59ee51089e2b9e2d8356c5fc +2025-08-21T21:57:45.0620891Z 2025-08-21 21:57:44,979 - INFO - DRY RUN: Would tag objects in airrflow/results-9a7ffb234dd84fec59ee51089e2b9e2d8356c5fc with {'pipeline': 'airrflow', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.979056', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0622110Z 2025-08-21 21:57:44,979 - WARNING - šŸ—‘ļø Tagged orphaned directory: airrflow/results-9a7ffb234dd84fec59ee51089e2b9e2d8356c5fc +2025-08-21T21:57:45.0622795Z 2025-08-21 21:57:44,979 - INFO - Processing: methylseq/results-da77307d967426cb5a774d5de9c351537e775c65-bismark-CPU +2025-08-21T21:57:45.0623960Z 2025-08-21 21:57:44,979 - INFO - DRY RUN: Would tag objects in methylseq/results-da77307d967426cb5a774d5de9c351537e775c65-bismark-CPU with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.979145', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0625498Z 2025-08-21 21:57:44,979 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-da77307d967426cb5a774d5de9c351537e775c65-bismark-CPU +2025-08-21T21:57:45.0626170Z 2025-08-21 21:57:44,979 - INFO - Processing: sarek/results-c42f0b4e754c54f4ab9c7124634d67e0dc502663 +2025-08-21T21:57:45.0627187Z 2025-08-21 21:57:44,979 - INFO - DRY RUN: Would tag objects in sarek/results-c42f0b4e754c54f4ab9c7124634d67e0dc502663 with {'pipeline': 'sarek', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.979236', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0628356Z 2025-08-21 21:57:44,979 - WARNING - šŸ—‘ļø Tagged orphaned directory: sarek/results-c42f0b4e754c54f4ab9c7124634d67e0dc502663 +2025-08-21T21:57:45.0628968Z 2025-08-21 21:57:44,979 - INFO - Processing: isoseq/results-a568a758220204c0baa4a0ea74496d37811a205f +2025-08-21T21:57:45.0630155Z 2025-08-21 21:57:44,979 - INFO - DRY RUN: Would tag objects in isoseq/results-a568a758220204c0baa4a0ea74496d37811a205f with {'pipeline': 'isoseq', 'release': '1.1.2', 'sha': 'a568a758220204c0baa4a0ea74496d37811a205f', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.979325', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0631431Z 2025-08-21 21:57:44,979 - INFO - āœ… Tagged current release: isoseq/results-a568a758220204c0baa4a0ea74496d37811a205f +2025-08-21T21:57:45.0632023Z 2025-08-21 21:57:44,979 - INFO - Processing: airrflow/results-9ec2002bc5f03746165b4e2e1183ebc96dc0326d +2025-08-21T21:57:45.0633072Z 2025-08-21 21:57:44,979 - INFO - DRY RUN: Would tag objects in airrflow/results-9ec2002bc5f03746165b4e2e1183ebc96dc0326d with {'pipeline': 'airrflow', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.979414', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0634279Z 2025-08-21 21:57:44,979 - WARNING - šŸ—‘ļø Tagged orphaned directory: airrflow/results-9ec2002bc5f03746165b4e2e1183ebc96dc0326d +2025-08-21T21:57:45.0636107Z 2025-08-21 21:57:44,979 - INFO - Processing: ampliseq/results-f3c97e1b9088b229d4bcdeb2f9a25f21d6552f8b +2025-08-21T21:57:45.0637359Z 2025-08-21 21:57:44,979 - INFO - DRY RUN: Would tag objects in ampliseq/results-f3c97e1b9088b229d4bcdeb2f9a25f21d6552f8b with {'pipeline': 'ampliseq', 'release': '2.8.0', 'sha': 'f3c97e1b9088b229d4bcdeb2f9a25f21d6552f8b', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.979520', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0638721Z 2025-08-21 21:57:44,979 - INFO - āœ… Tagged current release: ampliseq/results-f3c97e1b9088b229d4bcdeb2f9a25f21d6552f8b +2025-08-21T21:57:45.0639352Z 2025-08-21 21:57:44,979 - INFO - Processing: taxprofiler/results-07b926a89e68bc1b0720170c0996a48b7eed618d +2025-08-21T21:57:45.0640733Z 2025-08-21 21:57:44,979 - INFO - DRY RUN: Would tag objects in taxprofiler/results-07b926a89e68bc1b0720170c0996a48b7eed618d with {'pipeline': 'taxprofiler', 'release': '1.0.1', 'sha': '07b926a89e68bc1b0720170c0996a48b7eed618d', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.979609', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0642469Z 2025-08-21 21:57:44,979 - INFO - āœ… Tagged current release: taxprofiler/results-07b926a89e68bc1b0720170c0996a48b7eed618d +2025-08-21T21:57:45.0643103Z 2025-08-21 21:57:44,979 - INFO - Processing: crisprseq/results-cf0cff8c5b5ce34354702cd6e512b5dbaf093af2 +2025-08-21T21:57:45.0644225Z 2025-08-21 21:57:44,979 - INFO - DRY RUN: Would tag objects in crisprseq/results-cf0cff8c5b5ce34354702cd6e512b5dbaf093af2 with {'pipeline': 'crisprseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.979698', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0645811Z 2025-08-21 21:57:44,979 - WARNING - šŸ—‘ļø Tagged orphaned directory: crisprseq/results-cf0cff8c5b5ce34354702cd6e512b5dbaf093af2 +2025-08-21T21:57:45.0646475Z 2025-08-21 21:57:44,979 - INFO - Processing: atacseq/results-30a165a3cc870a9ab95d6b2fe82d22a17943cd16 +2025-08-21T21:57:45.0647715Z 2025-08-21 21:57:44,979 - INFO - DRY RUN: Would tag objects in atacseq/results-30a165a3cc870a9ab95d6b2fe82d22a17943cd16 with {'pipeline': 'atacseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.979788', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0648926Z 2025-08-21 21:57:44,979 - WARNING - šŸ—‘ļø Tagged orphaned directory: atacseq/results-30a165a3cc870a9ab95d6b2fe82d22a17943cd16 +2025-08-21T21:57:45.0649578Z 2025-08-21 21:57:44,979 - INFO - Processing: diaproteomics/results-e118578569e022406224dce3bda901d12a4a7c0c +2025-08-21T21:57:45.0650831Z 2025-08-21 21:57:44,979 - INFO - DRY RUN: Would tag objects in diaproteomics/results-e118578569e022406224dce3bda901d12a4a7c0c with {'pipeline': 'diaproteomics', 'release': '1.2.1', 'sha': 'e118578569e022406224dce3bda901d12a4a7c0c', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.979880', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0652197Z 2025-08-21 21:57:44,979 - INFO - āœ… Tagged current release: diaproteomics/results-e118578569e022406224dce3bda901d12a4a7c0c +2025-08-21T21:57:45.0652828Z 2025-08-21 21:57:44,979 - INFO - Processing: mhcquant/results-bc0a2dd30bae440c86e0953feabcb1d971a96b52 +2025-08-21T21:57:45.0654035Z 2025-08-21 21:57:44,979 - INFO - DRY RUN: Would tag objects in mhcquant/results-bc0a2dd30bae440c86e0953feabcb1d971a96b52 with {'pipeline': 'mhcquant', 'release': '2.3.1', 'sha': 'bc0a2dd30bae440c86e0953feabcb1d971a96b52', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.979967', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0655588Z 2025-08-21 21:57:44,980 - INFO - āœ… Tagged current release: mhcquant/results-bc0a2dd30bae440c86e0953feabcb1d971a96b52 +2025-08-21T21:57:45.0656238Z 2025-08-21 21:57:44,980 - INFO - Processing: readsimulator/results-test-8ccb7a99bd09db6a7e7793c1f6a7821158e652e0 +2025-08-21T21:57:45.0657403Z 2025-08-21 21:57:44,980 - INFO - DRY RUN: Would tag objects in readsimulator/results-test-8ccb7a99bd09db6a7e7793c1f6a7821158e652e0 with {'pipeline': 'readsimulator', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.980057', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0658733Z 2025-08-21 21:57:44,980 - WARNING - šŸ—‘ļø Tagged orphaned directory: readsimulator/results-test-8ccb7a99bd09db6a7e7793c1f6a7821158e652e0 +2025-08-21T21:57:45.0659413Z 2025-08-21 21:57:44,980 - INFO - Processing: methylseq/results-81f989c93e866a9b0bd0d9584e077b9b8f78affe +2025-08-21T21:57:45.0660615Z 2025-08-21 21:57:44,980 - INFO - DRY RUN: Would tag objects in methylseq/results-81f989c93e866a9b0bd0d9584e077b9b8f78affe with {'pipeline': 'methylseq', 'release': '2.4.0', 'sha': '81f989c93e866a9b0bd0d9584e077b9b8f78affe', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.980149', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0661948Z 2025-08-21 21:57:44,980 - INFO - āœ… Tagged current release: methylseq/results-81f989c93e866a9b0bd0d9584e077b9b8f78affe +2025-08-21T21:57:45.0662680Z 2025-08-21 21:57:44,980 - INFO - Processing: eager/results-631f18efa4147d0b787245ed8dda041d00ebf6fd +2025-08-21T21:57:45.0663861Z 2025-08-21 21:57:44,980 - INFO - DRY RUN: Would tag objects in eager/results-631f18efa4147d0b787245ed8dda041d00ebf6fd with {'pipeline': 'eager', 'release': '2.4.7', 'sha': '631f18efa4147d0b787245ed8dda041d00ebf6fd', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.980236', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0665255Z 2025-08-21 21:57:44,980 - INFO - āœ… Tagged current release: eager/results-631f18efa4147d0b787245ed8dda041d00ebf6fd +2025-08-21T21:57:45.0665877Z 2025-08-21 21:57:44,980 - INFO - Processing: drugresponseeval/results-b6d27d751c2e648045243e1826d502242dccf5fd +2025-08-21T21:57:45.0667166Z 2025-08-21 21:57:44,980 - INFO - DRY RUN: Would tag objects in drugresponseeval/results-b6d27d751c2e648045243e1826d502242dccf5fd with {'pipeline': 'drugresponseeval', 'release': '1.0.0', 'sha': 'b6d27d751c2e648045243e1826d502242dccf5fd', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.980325', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0668695Z 2025-08-21 21:57:44,980 - INFO - āœ… Tagged current release: drugresponseeval/results-b6d27d751c2e648045243e1826d502242dccf5fd +2025-08-21T21:57:45.0669247Z 2025-08-21 21:57:44,980 - INFO - Processing: pairgenomealign/results-dev +2025-08-21T21:57:45.0670146Z 2025-08-21 21:57:44,980 - INFO - DRY RUN: Would tag objects in pairgenomealign/results-dev with {'pipeline': 'pairgenomealign', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.980411', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0671159Z 2025-08-21 21:57:44,980 - WARNING - šŸ—‘ļø Tagged orphaned directory: pairgenomealign/results-dev +2025-08-21T21:57:45.0671736Z 2025-08-21 21:57:44,980 - INFO - Processing: testpipeline/results-test-185cc42f61019a2a182017e7a268c5b0e5815bbc +2025-08-21T21:57:45.0672888Z 2025-08-21 21:57:44,980 - INFO - DRY RUN: Would tag objects in testpipeline/results-test-185cc42f61019a2a182017e7a268c5b0e5815bbc with {'pipeline': 'testpipeline', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.980515', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0674190Z 2025-08-21 21:57:44,980 - WARNING - šŸ—‘ļø Tagged orphaned directory: testpipeline/results-test-185cc42f61019a2a182017e7a268c5b0e5815bbc +2025-08-21T21:57:45.0674889Z 2025-08-21 21:57:44,980 - INFO - Processing: taxprofiler/results-test-96dc9ecd31d47ec8703e2be554e8e6b6bd98b377 +2025-08-21T21:57:45.0676128Z 2025-08-21 21:57:44,980 - INFO - DRY RUN: Would tag objects in taxprofiler/results-test-96dc9ecd31d47ec8703e2be554e8e6b6bd98b377 with {'pipeline': 'taxprofiler', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.980608', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0677423Z 2025-08-21 21:57:44,980 - WARNING - šŸ—‘ļø Tagged orphaned directory: taxprofiler/results-test-96dc9ecd31d47ec8703e2be554e8e6b6bd98b377 +2025-08-21T21:57:45.0678101Z 2025-08-21 21:57:44,980 - INFO - Processing: airrflow/results-daa1bbd2d5ea0be4d9fd1b982a18dfb8e53a2b29 +2025-08-21T21:57:45.0679178Z 2025-08-21 21:57:44,980 - INFO - DRY RUN: Would tag objects in airrflow/results-daa1bbd2d5ea0be4d9fd1b982a18dfb8e53a2b29 with {'pipeline': 'airrflow', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.980702', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0680413Z 2025-08-21 21:57:44,980 - WARNING - šŸ—‘ļø Tagged orphaned directory: airrflow/results-daa1bbd2d5ea0be4d9fd1b982a18dfb8e53a2b29 +2025-08-21T21:57:45.0681051Z 2025-08-21 21:57:44,980 - INFO - Processing: airrflow/results-8342a7cb180a44d531f5b239c88babec769f6fee +2025-08-21T21:57:45.0682099Z 2025-08-21 21:57:44,980 - INFO - DRY RUN: Would tag objects in airrflow/results-8342a7cb180a44d531f5b239c88babec769f6fee with {'pipeline': 'airrflow', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.980793', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0683418Z 2025-08-21 21:57:44,980 - WARNING - šŸ—‘ļø Tagged orphaned directory: airrflow/results-8342a7cb180a44d531f5b239c88babec769f6fee +2025-08-21T21:57:45.0684040Z 2025-08-21 21:57:44,980 - INFO - Processing: mag/results-049ea0a819e8c404580a0260002cf2331aa0e7d0 +2025-08-21T21:57:45.0685512Z 2025-08-21 21:57:44,980 - INFO - DRY RUN: Would tag objects in mag/results-049ea0a819e8c404580a0260002cf2331aa0e7d0 with {'pipeline': 'mag', 'release': '3.3.0', 'sha': '049ea0a819e8c404580a0260002cf2331aa0e7d0', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.980883', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0686818Z 2025-08-21 21:57:44,980 - INFO - āœ… Tagged current release: mag/results-049ea0a819e8c404580a0260002cf2331aa0e7d0 +2025-08-21T21:57:45.0687391Z 2025-08-21 21:57:44,980 - INFO - Processing: sarek/results-96749f742197e828f4632cc2a7481190e7f642ac +2025-08-21T21:57:45.0688553Z 2025-08-21 21:57:44,980 - INFO - DRY RUN: Would tag objects in sarek/results-96749f742197e828f4632cc2a7481190e7f642ac with {'pipeline': 'sarek', 'release': '3.1.1', 'sha': '96749f742197e828f4632cc2a7481190e7f642ac', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.980970', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0689965Z 2025-08-21 21:57:44,981 - INFO - āœ… Tagged current release: sarek/results-96749f742197e828f4632cc2a7481190e7f642ac +2025-08-21T21:57:45.0690576Z 2025-08-21 21:57:44,981 - INFO - Processing: rnaseq/results-test-b89fac32650aacc86fcda9ee77e00612a1d77066 +2025-08-21T21:57:45.0691657Z 2025-08-21 21:57:44,981 - INFO - DRY RUN: Would tag objects in rnaseq/results-test-b89fac32650aacc86fcda9ee77e00612a1d77066 with {'pipeline': 'rnaseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.981058', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0692896Z 2025-08-21 21:57:44,981 - WARNING - šŸ—‘ļø Tagged orphaned directory: rnaseq/results-test-b89fac32650aacc86fcda9ee77e00612a1d77066 +2025-08-21T21:57:45.0693595Z 2025-08-21 21:57:44,981 - INFO - Processing: differentialabundance/results-c5de0561506f73887979909274b9f7155ef1cf90 +2025-08-21T21:57:45.0694947Z 2025-08-21 21:57:44,981 - INFO - DRY RUN: Would tag objects in differentialabundance/results-c5de0561506f73887979909274b9f7155ef1cf90 with {'pipeline': 'differentialabundance', 'release': '1.1.0', 'sha': 'c5de0561506f73887979909274b9f7155ef1cf90', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.981148', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0696657Z 2025-08-21 21:57:44,981 - INFO - āœ… Tagged current release: differentialabundance/results-c5de0561506f73887979909274b9f7155ef1cf90 +2025-08-21T21:57:45.0697314Z 2025-08-21 21:57:44,981 - INFO - Processing: rnafusion/results-58afbbc208a6548aaa2f909fdff185d533b2025a +2025-08-21T21:57:45.0698539Z 2025-08-21 21:57:44,981 - INFO - DRY RUN: Would tag objects in rnafusion/results-58afbbc208a6548aaa2f909fdff185d533b2025a with {'pipeline': 'rnafusion', 'release': '2.2.0', 'sha': '58afbbc208a6548aaa2f909fdff185d533b2025a', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.981239', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0699890Z 2025-08-21 21:57:44,981 - INFO - āœ… Tagged current release: rnafusion/results-58afbbc208a6548aaa2f909fdff185d533b2025a +2025-08-21T21:57:45.0700503Z 2025-08-21 21:57:44,981 - INFO - Processing: crisprseq/results-cba895bbdb2f333388a2702311f1a7c02f89963f +2025-08-21T21:57:45.0701565Z 2025-08-21 21:57:44,981 - INFO - DRY RUN: Would tag objects in crisprseq/results-cba895bbdb2f333388a2702311f1a7c02f89963f with {'pipeline': 'crisprseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.981323', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0702786Z 2025-08-21 21:57:44,981 - WARNING - šŸ—‘ļø Tagged orphaned directory: crisprseq/results-cba895bbdb2f333388a2702311f1a7c02f89963f +2025-08-21T21:57:45.0703426Z 2025-08-21 21:57:44,981 - INFO - Processing: detaxizer/results-9a3c7cbdf9b595734d3db2cc29a9d06b87a5e94f +2025-08-21T21:57:45.0704773Z 2025-08-21 21:57:44,981 - INFO - DRY RUN: Would tag objects in detaxizer/results-9a3c7cbdf9b595734d3db2cc29a9d06b87a5e94f with {'pipeline': 'detaxizer', 'release': '1.0.0', 'sha': '9a3c7cbdf9b595734d3db2cc29a9d06b87a5e94f', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.981413', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0706239Z 2025-08-21 21:57:44,981 - INFO - āœ… Tagged current release: detaxizer/results-9a3c7cbdf9b595734d3db2cc29a9d06b87a5e94f +2025-08-21T21:57:45.0706878Z 2025-08-21 21:57:44,981 - INFO - Processing: drugresponseeval/results-60890c6b5f9b9a20947b4b343280241800c7bc2a +2025-08-21T21:57:45.0708152Z 2025-08-21 21:57:44,981 - INFO - DRY RUN: Would tag objects in drugresponseeval/results-60890c6b5f9b9a20947b4b343280241800c7bc2a with {'pipeline': 'drugresponseeval', 'release': '1.1.0', 'sha': '60890c6b5f9b9a20947b4b343280241800c7bc2a', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.981515', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0709557Z 2025-08-21 21:57:44,981 - INFO - āœ… Tagged current release: drugresponseeval/results-60890c6b5f9b9a20947b4b343280241800c7bc2a +2025-08-21T21:57:45.0710302Z 2025-08-21 21:57:44,981 - INFO - Processing: eager/results-cc66639a8a2710f0de6aef5ae28e1614a5a4e3e2 +2025-08-21T21:57:45.0711469Z 2025-08-21 21:57:44,981 - INFO - DRY RUN: Would tag objects in eager/results-cc66639a8a2710f0de6aef5ae28e1614a5a4e3e2 with {'pipeline': 'eager', 'release': '2.4.0', 'sha': 'cc66639a8a2710f0de6aef5ae28e1614a5a4e3e2', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.981605', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0712743Z 2025-08-21 21:57:44,981 - INFO - āœ… Tagged current release: eager/results-cc66639a8a2710f0de6aef5ae28e1614a5a4e3e2 +2025-08-21T21:57:45.0713347Z 2025-08-21 21:57:44,981 - INFO - Processing: phaseimpute/results-116a042f0c49ffe9d121bfa34b6cf9b2a6c3a480 +2025-08-21T21:57:45.0714455Z 2025-08-21 21:57:44,981 - INFO - DRY RUN: Would tag objects in phaseimpute/results-116a042f0c49ffe9d121bfa34b6cf9b2a6c3a480 with {'pipeline': 'phaseimpute', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.981694', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0715842Z 2025-08-21 21:57:44,981 - WARNING - šŸ—‘ļø Tagged orphaned directory: phaseimpute/results-116a042f0c49ffe9d121bfa34b6cf9b2a6c3a480 +2025-08-21T21:57:45.0716480Z 2025-08-21 21:57:44,981 - INFO - Processing: sarek/results-bce378e09de25bb26c388b917f93f84806d3ba27 +2025-08-21T21:57:45.0717642Z 2025-08-21 21:57:44,981 - INFO - DRY RUN: Would tag objects in sarek/results-bce378e09de25bb26c388b917f93f84806d3ba27 with {'pipeline': 'sarek', 'release': '2.6.1', 'sha': 'bce378e09de25bb26c388b917f93f84806d3ba27', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.981785', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0718911Z 2025-08-21 21:57:44,981 - INFO - āœ… Tagged current release: sarek/results-bce378e09de25bb26c388b917f93f84806d3ba27 +2025-08-21T21:57:45.0719509Z 2025-08-21 21:57:44,981 - INFO - Processing: bamtofastq/results-db5efc69473a48c74dfdaf70177a56939d83b414 +2025-08-21T21:57:45.0720595Z 2025-08-21 21:57:44,981 - INFO - DRY RUN: Would tag objects in bamtofastq/results-db5efc69473a48c74dfdaf70177a56939d83b414 with {'pipeline': 'bamtofastq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.981872', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0721832Z 2025-08-21 21:57:44,981 - WARNING - šŸ—‘ļø Tagged orphaned directory: bamtofastq/results-db5efc69473a48c74dfdaf70177a56939d83b414 +2025-08-21T21:57:45.0722481Z 2025-08-21 21:57:44,981 - INFO - Processing: scnanoseq/results-35da74af5daae60ade2920c84a48f833a4c3c2a1 +2025-08-21T21:57:45.0723693Z 2025-08-21 21:57:44,981 - INFO - DRY RUN: Would tag objects in scnanoseq/results-35da74af5daae60ade2920c84a48f833a4c3c2a1 with {'pipeline': 'scnanoseq', 'release': '1.0.0', 'sha': '35da74af5daae60ade2920c84a48f833a4c3c2a1', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.981962', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0725238Z 2025-08-21 21:57:44,981 - INFO - āœ… Tagged current release: scnanoseq/results-35da74af5daae60ade2920c84a48f833a4c3c2a1 +2025-08-21T21:57:45.0725866Z 2025-08-21 21:57:44,982 - INFO - Processing: bactmap/results-834642d8ac150ca10d705833223e7bcf15efc210 +2025-08-21T21:57:45.0727044Z 2025-08-21 21:57:44,982 - INFO - DRY RUN: Would tag objects in bactmap/results-834642d8ac150ca10d705833223e7bcf15efc210 with {'pipeline': 'bactmap', 'release': '1.0.0', 'sha': '834642d8ac150ca10d705833223e7bcf15efc210', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.982050', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0728340Z 2025-08-21 21:57:44,982 - INFO - āœ… Tagged current release: bactmap/results-834642d8ac150ca10d705833223e7bcf15efc210 +2025-08-21T21:57:45.0728921Z 2025-08-21 21:57:44,982 - INFO - Processing: atacseq/results-415795d3c14fb296c6418b427279ca34ab976844 +2025-08-21T21:57:45.0730085Z 2025-08-21 21:57:44,982 - INFO - DRY RUN: Would tag objects in atacseq/results-415795d3c14fb296c6418b427279ca34ab976844 with {'pipeline': 'atacseq', 'release': '2.1.1', 'sha': '415795d3c14fb296c6418b427279ca34ab976844', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.982138', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0731491Z 2025-08-21 21:57:44,982 - INFO - āœ… Tagged current release: atacseq/results-415795d3c14fb296c6418b427279ca34ab976844 +2025-08-21T21:57:45.0732607Z 2025-08-21 21:57:44,982 - INFO - Processing: methylseq/results-da77307d967426cb5a774d5de9c351537e775c65-bismark_hisat-CPU +2025-08-21T21:57:45.0733953Z 2025-08-21 21:57:44,982 - INFO - DRY RUN: Would tag objects in methylseq/results-da77307d967426cb5a774d5de9c351537e775c65-bismark_hisat-CPU with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.982224', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0735823Z 2025-08-21 21:57:44,982 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-da77307d967426cb5a774d5de9c351537e775c65-bismark_hisat-CPU +2025-08-21T21:57:45.0736667Z 2025-08-21 21:57:44,982 - INFO - Processing: rnaseq/results-33df0c05ef99d1d9af97d1d74681ab0452612abb +2025-08-21T21:57:45.0737960Z 2025-08-21 21:57:44,982 - INFO - DRY RUN: Would tag objects in rnaseq/results-33df0c05ef99d1d9af97d1d74681ab0452612abb with {'pipeline': 'rnaseq', 'release': '3.16.0', 'sha': '33df0c05ef99d1d9af97d1d74681ab0452612abb', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.982315', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0739419Z 2025-08-21 21:57:44,982 - INFO - āœ… Tagged current release: rnaseq/results-33df0c05ef99d1d9af97d1d74681ab0452612abb +2025-08-21T21:57:45.0740079Z 2025-08-21 21:57:44,982 - INFO - Processing: ampliseq/results-61e8bc76df53531049707dca86bb8fa13882551e +2025-08-21T21:57:45.0741274Z 2025-08-21 21:57:44,982 - INFO - DRY RUN: Would tag objects in ampliseq/results-61e8bc76df53531049707dca86bb8fa13882551e with {'pipeline': 'ampliseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.982401', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0742643Z 2025-08-21 21:57:44,982 - WARNING - šŸ—‘ļø Tagged orphaned directory: ampliseq/results-61e8bc76df53531049707dca86bb8fa13882551e +2025-08-21T21:57:45.0743536Z 2025-08-21 21:57:44,982 - INFO - Processing: scrnaseq/results-61d1919aa96a4d82517aeb6d04943262a42a055e +2025-08-21T21:57:45.0744839Z 2025-08-21 21:57:44,982 - INFO - DRY RUN: Would tag objects in scrnaseq/results-61d1919aa96a4d82517aeb6d04943262a42a055e with {'pipeline': 'scrnaseq', 'release': '2.4.0', 'sha': '61d1919aa96a4d82517aeb6d04943262a42a055e', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.982490', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0746548Z 2025-08-21 21:57:44,982 - INFO - āœ… Tagged current release: scrnaseq/results-61d1919aa96a4d82517aeb6d04943262a42a055e +2025-08-21T21:57:45.0747289Z 2025-08-21 21:57:44,982 - INFO - Processing: demultiplex/results-17cde5d8f22f5327beac9637e941e4775ada1b3f +2025-08-21T21:57:45.0748818Z 2025-08-21 21:57:44,982 - INFO - DRY RUN: Would tag objects in demultiplex/results-17cde5d8f22f5327beac9637e941e4775ada1b3f with {'pipeline': 'demultiplex', 'release': '1.5.1', 'sha': '17cde5d8f22f5327beac9637e941e4775ada1b3f', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.982595', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0750312Z 2025-08-21 21:57:44,982 - INFO - āœ… Tagged current release: demultiplex/results-17cde5d8f22f5327beac9637e941e4775ada1b3f +2025-08-21T21:57:45.0751023Z 2025-08-21 21:57:44,982 - INFO - Processing: methylseq/results-f293f94207886c718f33d87c32ae15bc980503f2 +2025-08-21T21:57:45.0752235Z 2025-08-21 21:57:44,982 - INFO - DRY RUN: Would tag objects in methylseq/results-f293f94207886c718f33d87c32ae15bc980503f2 with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.982639', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0753582Z 2025-08-21 21:57:44,982 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-f293f94207886c718f33d87c32ae15bc980503f2 +2025-08-21T21:57:45.0754304Z 2025-08-21 21:57:44,982 - INFO - Processing: fetchngs/results-4611da4046667c74ad3bb943e88fcd6f5e60287a +2025-08-21T21:57:45.0755921Z 2025-08-21 21:57:44,982 - INFO - DRY RUN: Would tag objects in fetchngs/results-4611da4046667c74ad3bb943e88fcd6f5e60287a with {'pipeline': 'fetchngs', 'release': '1.0', 'sha': '4611da4046667c74ad3bb943e88fcd6f5e60287a', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.982678', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0757333Z 2025-08-21 21:57:44,982 - INFO - āœ… Tagged current release: fetchngs/results-4611da4046667c74ad3bb943e88fcd6f5e60287a +2025-08-21T21:57:45.0758054Z 2025-08-21 21:57:44,982 - INFO - Processing: isoseq/results-977b9bb18393474dfea31923cd479e005e8976db +2025-08-21T21:57:45.0759387Z 2025-08-21 21:57:44,982 - INFO - DRY RUN: Would tag objects in isoseq/results-977b9bb18393474dfea31923cd479e005e8976db with {'pipeline': 'isoseq', 'release': '1.1.4', 'sha': '977b9bb18393474dfea31923cd479e005e8976db', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.982715', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0760778Z 2025-08-21 21:57:44,982 - INFO - āœ… Tagged current release: isoseq/results-977b9bb18393474dfea31923cd479e005e8976db +2025-08-21T21:57:45.0776017Z 2025-08-21 21:57:44,982 - INFO - Processing: mag/results-e065754c46eedc85d46cd8a71b32ad73b3b741cb +2025-08-21T21:57:45.0777224Z 2025-08-21 21:57:44,982 - INFO - DRY RUN: Would tag objects in mag/results-e065754c46eedc85d46cd8a71b32ad73b3b741cb with {'pipeline': 'mag', 'release': '2.1.1', 'sha': 'e065754c46eedc85d46cd8a71b32ad73b3b741cb', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.982750', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0778580Z 2025-08-21 21:57:44,982 - INFO - āœ… Tagged current release: mag/results-e065754c46eedc85d46cd8a71b32ad73b3b741cb +2025-08-21T21:57:45.0779191Z 2025-08-21 21:57:44,982 - INFO - Processing: fetchngs/results-c318ae12fcb972ff28f6d38edd3165c88b6d0b3f +2025-08-21T21:57:45.0780428Z 2025-08-21 21:57:44,982 - INFO - DRY RUN: Would tag objects in fetchngs/results-c318ae12fcb972ff28f6d38edd3165c88b6d0b3f with {'pipeline': 'fetchngs', 'release': '1.5', 'sha': 'c318ae12fcb972ff28f6d38edd3165c88b6d0b3f', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.982785', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0781862Z 2025-08-21 21:57:44,982 - INFO - āœ… Tagged current release: fetchngs/results-c318ae12fcb972ff28f6d38edd3165c88b6d0b3f +2025-08-21T21:57:45.0782475Z 2025-08-21 21:57:44,982 - INFO - Processing: rnaseq/results-b59e87a54eae60e02f9ae12e3b9c9c59959328d7 +2025-08-21T21:57:45.0783654Z 2025-08-21 21:57:44,982 - INFO - DRY RUN: Would tag objects in rnaseq/results-b59e87a54eae60e02f9ae12e3b9c9c59959328d7 with {'pipeline': 'rnaseq', 'release': '3.13.1', 'sha': 'b59e87a54eae60e02f9ae12e3b9c9c59959328d7', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.982820', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0784938Z 2025-08-21 21:57:44,982 - INFO - āœ… Tagged current release: rnaseq/results-b59e87a54eae60e02f9ae12e3b9c9c59959328d7 +2025-08-21T21:57:45.0785992Z 2025-08-21 21:57:44,982 - INFO - Processing: pixelator/results-cf8bc130370b07cf3765fd8294d161fc639cec44 +2025-08-21T21:57:45.0787225Z 2025-08-21 21:57:44,982 - INFO - DRY RUN: Would tag objects in pixelator/results-cf8bc130370b07cf3765fd8294d161fc639cec44 with {'pipeline': 'pixelator', 'release': '1.0.1', 'sha': 'cf8bc130370b07cf3765fd8294d161fc639cec44', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.982856', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0788571Z 2025-08-21 21:57:44,982 - INFO - āœ… Tagged current release: pixelator/results-cf8bc130370b07cf3765fd8294d161fc639cec44 +2025-08-21T21:57:45.0789167Z 2025-08-21 21:57:44,982 - INFO - Processing: rnaseq/results-00f924cf92a986a842bb352b3c4ae379c773c989 +2025-08-21T21:57:45.0790342Z 2025-08-21 21:57:44,982 - INFO - DRY RUN: Would tag objects in rnaseq/results-00f924cf92a986a842bb352b3c4ae379c773c989 with {'pipeline': 'rnaseq', 'release': '3.17.0', 'sha': '00f924cf92a986a842bb352b3c4ae379c773c989', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.982893', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0791737Z 2025-08-21 21:57:44,982 - INFO - āœ… Tagged current release: rnaseq/results-00f924cf92a986a842bb352b3c4ae379c773c989 +2025-08-21T21:57:45.0792327Z 2025-08-21 21:57:44,982 - INFO - Processing: pacvar/results-6fad9f5361fdc028d097ab44495bdd8aee344ffd +2025-08-21T21:57:45.0793358Z 2025-08-21 21:57:44,982 - INFO - DRY RUN: Would tag objects in pacvar/results-6fad9f5361fdc028d097ab44495bdd8aee344ffd with {'pipeline': 'pacvar', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.982928', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0794553Z 2025-08-21 21:57:44,982 - WARNING - šŸ—‘ļø Tagged orphaned directory: pacvar/results-6fad9f5361fdc028d097ab44495bdd8aee344ffd +2025-08-21T21:57:45.0795318Z 2025-08-21 21:57:44,982 - INFO - Processing: smrnaseq/results-5ce052d93d4363c3d16667cc757948fa5ce2c763 +2025-08-21T21:57:45.0796509Z 2025-08-21 21:57:44,982 - INFO - DRY RUN: Would tag objects in smrnaseq/results-5ce052d93d4363c3d16667cc757948fa5ce2c763 with {'pipeline': 'smrnaseq', 'release': '2.2.0', 'sha': '5ce052d93d4363c3d16667cc757948fa5ce2c763', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.982967', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0797821Z 2025-08-21 21:57:44,982 - INFO - āœ… Tagged current release: smrnaseq/results-5ce052d93d4363c3d16667cc757948fa5ce2c763 +2025-08-21T21:57:45.0798428Z 2025-08-21 21:57:44,982 - INFO - Processing: rnafusion/results-c47ce6fdbfbbb249b23613f4713dde27e9ca2853 +2025-08-21T21:57:45.0799640Z 2025-08-21 21:57:44,983 - INFO - DRY RUN: Would tag objects in rnafusion/results-c47ce6fdbfbbb249b23613f4713dde27e9ca2853 with {'pipeline': 'rnafusion', 'release': '2.0.0', 'sha': 'c47ce6fdbfbbb249b23613f4713dde27e9ca2853', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.983002', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0800968Z 2025-08-21 21:57:44,983 - INFO - āœ… Tagged current release: rnafusion/results-c47ce6fdbfbbb249b23613f4713dde27e9ca2853 +2025-08-21T21:57:45.0801566Z 2025-08-21 21:57:44,983 - INFO - Processing: rnaseq/results-22ff499d9b3770d4fa06c203572074c3cd9d9d9d +2025-08-21T21:57:45.0802587Z 2025-08-21 21:57:44,983 - INFO - DRY RUN: Would tag objects in rnaseq/results-22ff499d9b3770d4fa06c203572074c3cd9d9d9d with {'pipeline': 'rnaseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.983037', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0803763Z 2025-08-21 21:57:44,983 - WARNING - šŸ—‘ļø Tagged orphaned directory: rnaseq/results-22ff499d9b3770d4fa06c203572074c3cd9d9d9d +2025-08-21T21:57:45.0804379Z 2025-08-21 21:57:44,983 - INFO - Processing: ampliseq/results-708b8398d007d9a8c907ce6da478717e1ab5f5bc +2025-08-21T21:57:45.0805810Z 2025-08-21 21:57:44,983 - INFO - DRY RUN: Would tag objects in ampliseq/results-708b8398d007d9a8c907ce6da478717e1ab5f5bc with {'pipeline': 'ampliseq', 'release': '2.4.0', 'sha': '708b8398d007d9a8c907ce6da478717e1ab5f5bc', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.983074', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0807140Z 2025-08-21 21:57:44,983 - INFO - āœ… Tagged current release: ampliseq/results-708b8398d007d9a8c907ce6da478717e1ab5f5bc +2025-08-21T21:57:45.0807734Z 2025-08-21 21:57:44,983 - INFO - Processing: funcscan/results-66e7a337def880472b06eaf0a2b2dc09e32ce399 +2025-08-21T21:57:45.0808922Z 2025-08-21 21:57:44,983 - INFO - DRY RUN: Would tag objects in funcscan/results-66e7a337def880472b06eaf0a2b2dc09e32ce399 with {'pipeline': 'funcscan', 'release': '2.0.0', 'sha': '66e7a337def880472b06eaf0a2b2dc09e32ce399', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.983108', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0810226Z 2025-08-21 21:57:44,983 - INFO - āœ… Tagged current release: funcscan/results-66e7a337def880472b06eaf0a2b2dc09e32ce399 +2025-08-21T21:57:45.0810828Z 2025-08-21 21:57:44,983 - INFO - Processing: rangeland/results-bfabfeef971675c9fce6a6112490164a5845c603 +2025-08-21T21:57:45.0812019Z 2025-08-21 21:57:44,983 - INFO - DRY RUN: Would tag objects in rangeland/results-bfabfeef971675c9fce6a6112490164a5845c603 with {'pipeline': 'rangeland', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.983145', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0813244Z 2025-08-21 21:57:44,983 - WARNING - šŸ—‘ļø Tagged orphaned directory: rangeland/results-bfabfeef971675c9fce6a6112490164a5845c603 +2025-08-21T21:57:45.0813876Z 2025-08-21 21:57:44,983 - INFO - Processing: chipseq/results-0f487ed76dc947793ab48527d8d3025f5f3060a5 +2025-08-21T21:57:45.0815340Z 2025-08-21 21:57:44,983 - INFO - DRY RUN: Would tag objects in chipseq/results-0f487ed76dc947793ab48527d8d3025f5f3060a5 with {'pipeline': 'chipseq', 'release': '1.2.1', 'sha': '0f487ed76dc947793ab48527d8d3025f5f3060a5', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.983181', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0816687Z 2025-08-21 21:57:44,983 - INFO - āœ… Tagged current release: chipseq/results-0f487ed76dc947793ab48527d8d3025f5f3060a5 +2025-08-21T21:57:45.0817284Z 2025-08-21 21:57:44,983 - INFO - Processing: isoseq/results-af7d5049a60fed0838249c65039386f1b551ef5f +2025-08-21T21:57:45.0818451Z 2025-08-21 21:57:44,983 - INFO - DRY RUN: Would tag objects in isoseq/results-af7d5049a60fed0838249c65039386f1b551ef5f with {'pipeline': 'isoseq', 'release': '1.0.0', 'sha': 'af7d5049a60fed0838249c65039386f1b551ef5f', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.983216', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0819724Z 2025-08-21 21:57:44,983 - INFO - āœ… Tagged current release: isoseq/results-af7d5049a60fed0838249c65039386f1b551ef5f +2025-08-21T21:57:45.0820311Z 2025-08-21 21:57:44,983 - INFO - Processing: funcscan/results-98a08153aa3308d6a0f374fc21dbf9790eba0819 +2025-08-21T21:57:45.0821516Z 2025-08-21 21:57:44,983 - INFO - DRY RUN: Would tag objects in funcscan/results-98a08153aa3308d6a0f374fc21dbf9790eba0819 with {'pipeline': 'funcscan', 'release': '1.0.1', 'sha': '98a08153aa3308d6a0f374fc21dbf9790eba0819', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.983250', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0822831Z 2025-08-21 21:57:44,983 - INFO - āœ… Tagged current release: funcscan/results-98a08153aa3308d6a0f374fc21dbf9790eba0819 +2025-08-21T21:57:45.0823419Z 2025-08-21 21:57:44,983 - INFO - Processing: mag/results-1504f9c58149de2bcfb5815d9b920c8963432a88 +2025-08-21T21:57:45.0824415Z 2025-08-21 21:57:44,983 - INFO - DRY RUN: Would tag objects in mag/results-1504f9c58149de2bcfb5815d9b920c8963432a88 with {'pipeline': 'mag', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.983285', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0825780Z 2025-08-21 21:57:44,983 - WARNING - šŸ—‘ļø Tagged orphaned directory: mag/results-1504f9c58149de2bcfb5815d9b920c8963432a88 +2025-08-21T21:57:45.0826423Z 2025-08-21 21:57:44,983 - INFO - Processing: readsimulator/results-8ccb7a99bd09db6a7e7793c1f6a7821158e652e0 +2025-08-21T21:57:45.0827692Z 2025-08-21 21:57:44,983 - INFO - DRY RUN: Would tag objects in readsimulator/results-8ccb7a99bd09db6a7e7793c1f6a7821158e652e0 with {'pipeline': 'readsimulator', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.983321', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0828986Z 2025-08-21 21:57:44,983 - WARNING - šŸ—‘ļø Tagged orphaned directory: readsimulator/results-8ccb7a99bd09db6a7e7793c1f6a7821158e652e0 +2025-08-21T21:57:45.0829650Z 2025-08-21 21:57:44,983 - INFO - Processing: funcscan/results-f89a8bfd2408b7f7dff7a9ad8bdcd09b7ed1189b +2025-08-21T21:57:45.0830716Z 2025-08-21 21:57:44,983 - INFO - DRY RUN: Would tag objects in funcscan/results-f89a8bfd2408b7f7dff7a9ad8bdcd09b7ed1189b with {'pipeline': 'funcscan', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.983357', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0831948Z 2025-08-21 21:57:44,983 - WARNING - šŸ—‘ļø Tagged orphaned directory: funcscan/results-f89a8bfd2408b7f7dff7a9ad8bdcd09b7ed1189b +2025-08-21T21:57:45.0832733Z 2025-08-21 21:57:44,983 - INFO - Processing: methylong/results-test-651ce97c168b9684be8a6c00e851c0240689a6d1 +2025-08-21T21:57:45.0833839Z 2025-08-21 21:57:44,983 - INFO - DRY RUN: Would tag objects in methylong/results-test-651ce97c168b9684be8a6c00e851c0240689a6d1 with {'pipeline': 'methylong', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.983393', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0835244Z 2025-08-21 21:57:44,983 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylong/results-test-651ce97c168b9684be8a6c00e851c0240689a6d1 +2025-08-21T21:57:45.0835835Z 2025-08-21 21:57:44,983 - INFO - Processing: variantbenchmarking/results-dev +2025-08-21T21:57:45.0836766Z 2025-08-21 21:57:44,983 - INFO - DRY RUN: Would tag objects in variantbenchmarking/results-dev with {'pipeline': 'variantbenchmarking', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.983431', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0837835Z 2025-08-21 21:57:44,983 - WARNING - šŸ—‘ļø Tagged orphaned directory: variantbenchmarking/results-dev +2025-08-21T21:57:45.0838408Z 2025-08-21 21:57:44,983 - INFO - Processing: taxprofiler/results-9f474018bcdd39684e04a11c4cec5f437e9f46b7 +2025-08-21T21:57:45.0839651Z 2025-08-21 21:57:44,983 - INFO - DRY RUN: Would tag objects in taxprofiler/results-9f474018bcdd39684e04a11c4cec5f437e9f46b7 with {'pipeline': 'taxprofiler', 'release': '1.1.5', 'sha': '9f474018bcdd39684e04a11c4cec5f437e9f46b7', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.983468', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0840994Z 2025-08-21 21:57:44,983 - INFO - āœ… Tagged current release: taxprofiler/results-9f474018bcdd39684e04a11c4cec5f437e9f46b7 +2025-08-21T21:57:45.0841645Z 2025-08-21 21:57:44,983 - INFO - Processing: viralintegration/results-70e558aaff836d43f5d662bf9c28414f4e6db642 +2025-08-21T21:57:45.0842948Z 2025-08-21 21:57:44,983 - INFO - DRY RUN: Would tag objects in viralintegration/results-70e558aaff836d43f5d662bf9c28414f4e6db642 with {'pipeline': 'viralintegration', 'release': '0.1.1', 'sha': '70e558aaff836d43f5d662bf9c28414f4e6db642', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.983522', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0844392Z 2025-08-21 21:57:44,983 - INFO - āœ… Tagged current release: viralintegration/results-70e558aaff836d43f5d662bf9c28414f4e6db642 +2025-08-21T21:57:45.0845225Z 2025-08-21 21:57:44,983 - INFO - Processing: demultiplex/results-8f5d9bab6c40a0140ba48a7df4a01f16297418c5 +2025-08-21T21:57:45.0846466Z 2025-08-21 21:57:44,983 - INFO - DRY RUN: Would tag objects in demultiplex/results-8f5d9bab6c40a0140ba48a7df4a01f16297418c5 with {'pipeline': 'demultiplex', 'release': '1.3.1', 'sha': '8f5d9bab6c40a0140ba48a7df4a01f16297418c5', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.983562', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0847952Z 2025-08-21 21:57:44,983 - INFO - āœ… Tagged current release: demultiplex/results-8f5d9bab6c40a0140ba48a7df4a01f16297418c5 +2025-08-21T21:57:45.0848572Z 2025-08-21 21:57:44,983 - INFO - Processing: sarek/results-e2778aa567007cfd75b40a4f66abe1ed818448fb +2025-08-21T21:57:45.0849591Z 2025-08-21 21:57:44,983 - INFO - DRY RUN: Would tag objects in sarek/results-e2778aa567007cfd75b40a4f66abe1ed818448fb with {'pipeline': 'sarek', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.983598', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0850767Z 2025-08-21 21:57:44,983 - WARNING - šŸ—‘ļø Tagged orphaned directory: sarek/results-e2778aa567007cfd75b40a4f66abe1ed818448fb +2025-08-21T21:57:45.0851414Z 2025-08-21 21:57:44,983 - INFO - Processing: readsimulator/results-0e8805ddbcd0e0fdcdc62105d59c3f29dd985a64 +2025-08-21T21:57:45.0852679Z 2025-08-21 21:57:44,983 - INFO - DRY RUN: Would tag objects in readsimulator/results-0e8805ddbcd0e0fdcdc62105d59c3f29dd985a64 with {'pipeline': 'readsimulator', 'release': '1.0.1', 'sha': '0e8805ddbcd0e0fdcdc62105d59c3f29dd985a64', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.983635', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0854172Z 2025-08-21 21:57:44,983 - INFO - āœ… Tagged current release: readsimulator/results-0e8805ddbcd0e0fdcdc62105d59c3f29dd985a64 +2025-08-21T21:57:45.0854735Z 2025-08-21 21:57:44,983 - INFO - Processing: fetchngs/results-test-full-aspera +2025-08-21T21:57:45.0855948Z 2025-08-21 21:57:44,983 - INFO - DRY RUN: Would tag objects in fetchngs/results-test-full-aspera with {'pipeline': 'fetchngs', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.983671', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0856997Z 2025-08-21 21:57:44,983 - WARNING - šŸ—‘ļø Tagged orphaned directory: fetchngs/results-test-full-aspera +2025-08-21T21:57:45.0857572Z 2025-08-21 21:57:44,983 - INFO - Processing: methylong/results-8a9dc7060f71778b1c9cf7891ab50adf43c2a375 +2025-08-21T21:57:45.0858662Z 2025-08-21 21:57:44,983 - INFO - DRY RUN: Would tag objects in methylong/results-8a9dc7060f71778b1c9cf7891ab50adf43c2a375 with {'pipeline': 'methylong', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.983708', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0859893Z 2025-08-21 21:57:44,983 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylong/results-8a9dc7060f71778b1c9cf7891ab50adf43c2a375 +2025-08-21T21:57:45.0860532Z 2025-08-21 21:57:44,983 - INFO - Processing: methylseq/results-b212815663f97aa3913832dba1d02a3c0a6e984d +2025-08-21T21:57:45.0861591Z 2025-08-21 21:57:44,983 - INFO - DRY RUN: Would tag objects in methylseq/results-b212815663f97aa3913832dba1d02a3c0a6e984d with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.983744', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0862801Z 2025-08-21 21:57:44,983 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-b212815663f97aa3913832dba1d02a3c0a6e984d +2025-08-21T21:57:45.0863446Z 2025-08-21 21:57:44,983 - INFO - Processing: rnaseq/results-test-795793354be731e30d1dafb8fc0e1b9815a3948b +2025-08-21T21:57:45.0864515Z 2025-08-21 21:57:44,983 - INFO - DRY RUN: Would tag objects in rnaseq/results-test-795793354be731e30d1dafb8fc0e1b9815a3948b with {'pipeline': 'rnaseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.983779', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0866038Z 2025-08-21 21:57:44,983 - WARNING - šŸ—‘ļø Tagged orphaned directory: rnaseq/results-test-795793354be731e30d1dafb8fc0e1b9815a3948b +2025-08-21T21:57:45.0866683Z 2025-08-21 21:57:44,983 - INFO - Processing: rnasplice/results-f70bbce27cbade36f993a7e39fa6e574fc4c6d3a +2025-08-21T21:57:45.0867904Z 2025-08-21 21:57:44,983 - INFO - DRY RUN: Would tag objects in rnasplice/results-f70bbce27cbade36f993a7e39fa6e574fc4c6d3a with {'pipeline': 'rnasplice', 'release': '1.0.2', 'sha': 'f70bbce27cbade36f993a7e39fa6e574fc4c6d3a', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.983816', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0869446Z 2025-08-21 21:57:44,983 - INFO - āœ… Tagged current release: rnasplice/results-f70bbce27cbade36f993a7e39fa6e574fc4c6d3a +2025-08-21T21:57:45.0870081Z 2025-08-21 21:57:44,983 - INFO - Processing: readsimulator/results-a1473767acf39ec6a7e2afa9641109979f5b3b99 +2025-08-21T21:57:45.0871181Z 2025-08-21 21:57:44,983 - INFO - DRY RUN: Would tag objects in readsimulator/results-a1473767acf39ec6a7e2afa9641109979f5b3b99 with {'pipeline': 'readsimulator', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.983852', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0872441Z 2025-08-21 21:57:44,983 - WARNING - šŸ—‘ļø Tagged orphaned directory: readsimulator/results-a1473767acf39ec6a7e2afa9641109979f5b3b99 +2025-08-21T21:57:45.0873074Z 2025-08-21 21:57:44,983 - INFO - Processing: bacass/results-959967364c7c0105b5b271acf0441fa9290e0d4c +2025-08-21T21:57:45.0874236Z 2025-08-21 21:57:44,983 - INFO - DRY RUN: Would tag objects in bacass/results-959967364c7c0105b5b271acf0441fa9290e0d4c with {'pipeline': 'bacass', 'release': '2.0.0', 'sha': '959967364c7c0105b5b271acf0441fa9290e0d4c', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.983888', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0875785Z 2025-08-21 21:57:44,983 - INFO - āœ… Tagged current release: bacass/results-959967364c7c0105b5b271acf0441fa9290e0d4c +2025-08-21T21:57:45.0876427Z 2025-08-21 21:57:44,983 - INFO - Processing: denovotranscript/results-test-0ac6a3fc495a6347dfa241eb553a60ba6feeeea2 +2025-08-21T21:57:45.0877621Z 2025-08-21 21:57:44,983 - INFO - DRY RUN: Would tag objects in denovotranscript/results-test-0ac6a3fc495a6347dfa241eb553a60ba6feeeea2 with {'pipeline': 'denovotranscript', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.983924', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0878976Z 2025-08-21 21:57:44,983 - WARNING - šŸ—‘ļø Tagged orphaned directory: denovotranscript/results-test-0ac6a3fc495a6347dfa241eb553a60ba6feeeea2 +2025-08-21T21:57:45.0879661Z 2025-08-21 21:57:44,983 - INFO - Processing: eager/results-3f9d64ced5e287391bcd5517a0c40153a01268e5 +2025-08-21T21:57:45.0880824Z 2025-08-21 21:57:44,983 - INFO - DRY RUN: Would tag objects in eager/results-3f9d64ced5e287391bcd5517a0c40153a01268e5 with {'pipeline': 'eager', 'release': '2.5.3', 'sha': '3f9d64ced5e287391bcd5517a0c40153a01268e5', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.983962', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0882090Z 2025-08-21 21:57:44,983 - INFO - āœ… Tagged current release: eager/results-3f9d64ced5e287391bcd5517a0c40153a01268e5 +2025-08-21T21:57:45.0882621Z 2025-08-21 21:57:44,984 - INFO - Processing: fetchngs/results-test-full-force-ftp +2025-08-21T21:57:45.0883526Z 2025-08-21 21:57:44,984 - INFO - DRY RUN: Would tag objects in fetchngs/results-test-full-force-ftp with {'pipeline': 'fetchngs', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.984020', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0884580Z 2025-08-21 21:57:44,984 - WARNING - šŸ—‘ļø Tagged orphaned directory: fetchngs/results-test-full-force-ftp +2025-08-21T21:57:45.0885267Z 2025-08-21 21:57:44,984 - INFO - Processing: demultiplex/results-ee3f8d01b1a917b52a885da20de67b08a7a0b790 +2025-08-21T21:57:45.0886499Z 2025-08-21 21:57:44,984 - INFO - DRY RUN: Would tag objects in demultiplex/results-ee3f8d01b1a917b52a885da20de67b08a7a0b790 with {'pipeline': 'demultiplex', 'release': '1.2.0', 'sha': 'ee3f8d01b1a917b52a885da20de67b08a7a0b790', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.984059', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0887851Z 2025-08-21 21:57:44,984 - INFO - āœ… Tagged current release: demultiplex/results-ee3f8d01b1a917b52a885da20de67b08a7a0b790 +2025-08-21T21:57:45.0888460Z 2025-08-21 21:57:44,984 - INFO - Processing: fetchngs/results-084e5ef3038b3210efaf203ce57d0ba21a6ece0b +2025-08-21T21:57:45.0889775Z 2025-08-21 21:57:44,984 - INFO - DRY RUN: Would tag objects in fetchngs/results-084e5ef3038b3210efaf203ce57d0ba21a6ece0b with {'pipeline': 'fetchngs', 'release': '1.9', 'sha': '084e5ef3038b3210efaf203ce57d0ba21a6ece0b', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.984094', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0891101Z 2025-08-21 21:57:44,984 - INFO - āœ… Tagged current release: fetchngs/results-084e5ef3038b3210efaf203ce57d0ba21a6ece0b +2025-08-21T21:57:45.0891685Z 2025-08-21 21:57:44,984 - INFO - Processing: mag/results-3499ce0ac8f6c7815ec6e2eda7d70982d7c46d5c +2025-08-21T21:57:45.0892683Z 2025-08-21 21:57:44,984 - INFO - DRY RUN: Would tag objects in mag/results-3499ce0ac8f6c7815ec6e2eda7d70982d7c46d5c with {'pipeline': 'mag', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.984129', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0893938Z 2025-08-21 21:57:44,984 - WARNING - šŸ—‘ļø Tagged orphaned directory: mag/results-3499ce0ac8f6c7815ec6e2eda7d70982d7c46d5c +2025-08-21T21:57:45.0894923Z 2025-08-21 21:57:44,984 - INFO - Processing: methylseq/results-93bc5811603c287c766a0ff7e03b5b41f4483895 +2025-08-21T21:57:45.0897333Z 2025-08-21 21:57:44,984 - INFO - DRY RUN: Would tag objects in methylseq/results-93bc5811603c287c766a0ff7e03b5b41f4483895 with {'pipeline': 'methylseq', 'release': '2.3.0', 'sha': '93bc5811603c287c766a0ff7e03b5b41f4483895', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.984166', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0899646Z 2025-08-21 21:57:44,984 - INFO - āœ… Tagged current release: methylseq/results-93bc5811603c287c766a0ff7e03b5b41f4483895 +2025-08-21T21:57:45.0900835Z 2025-08-21 21:57:44,984 - INFO - Processing: multiplesequencealign/results-79724dac3d240b9bb7684532d3fe238b42f6a4b4 +2025-08-21T21:57:45.0902942Z 2025-08-21 21:57:44,984 - INFO - DRY RUN: Would tag objects in multiplesequencealign/results-79724dac3d240b9bb7684532d3fe238b42f6a4b4 with {'pipeline': 'multiplesequencealign', 'release': '1.1.1', 'sha': '79724dac3d240b9bb7684532d3fe238b42f6a4b4', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.984202', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0904487Z 2025-08-21 21:57:44,984 - INFO - āœ… Tagged current release: multiplesequencealign/results-79724dac3d240b9bb7684532d3fe238b42f6a4b4 +2025-08-21T21:57:45.0905394Z 2025-08-21 21:57:44,984 - INFO - Processing: nanoseq/results-5ae8db57f649cd0e9f4fa9d45227f114779fee0c +2025-08-21T21:57:45.0906449Z 2025-08-21 21:57:44,984 - INFO - DRY RUN: Would tag objects in nanoseq/results-5ae8db57f649cd0e9f4fa9d45227f114779fee0c with {'pipeline': 'nanoseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.984237', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0907659Z 2025-08-21 21:57:44,984 - WARNING - šŸ—‘ļø Tagged orphaned directory: nanoseq/results-5ae8db57f649cd0e9f4fa9d45227f114779fee0c +2025-08-21T21:57:45.0908281Z 2025-08-21 21:57:44,984 - INFO - Processing: sarek/results-261c22211d20c1662db37728cc5405bfa7b8b7e2 +2025-08-21T21:57:45.0909338Z 2025-08-21 21:57:44,984 - INFO - DRY RUN: Would tag objects in sarek/results-261c22211d20c1662db37728cc5405bfa7b8b7e2 with {'pipeline': 'sarek', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.984275', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0910518Z 2025-08-21 21:57:44,984 - WARNING - šŸ—‘ļø Tagged orphaned directory: sarek/results-261c22211d20c1662db37728cc5405bfa7b8b7e2 +2025-08-21T21:57:45.0911152Z 2025-08-21 21:57:44,984 - INFO - Processing: viralrecon/results-97bebf8fe12e0e802d4468e133f3a2277ceb843c +2025-08-21T21:57:45.0912384Z 2025-08-21 21:57:44,984 - INFO - DRY RUN: Would tag objects in viralrecon/results-97bebf8fe12e0e802d4468e133f3a2277ceb843c with {'pipeline': 'viralrecon', 'release': '2.3.1', 'sha': '97bebf8fe12e0e802d4468e133f3a2277ceb843c', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.984311', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0913730Z 2025-08-21 21:57:44,984 - INFO - āœ… Tagged current release: viralrecon/results-97bebf8fe12e0e802d4468e133f3a2277ceb843c +2025-08-21T21:57:45.0914502Z 2025-08-21 21:57:44,984 - INFO - Processing: ampliseq/results-3b252d263d101879c7077eae94a7a3d714b051aa +2025-08-21T21:57:45.0915951Z 2025-08-21 21:57:44,984 - INFO - DRY RUN: Would tag objects in ampliseq/results-3b252d263d101879c7077eae94a7a3d714b051aa with {'pipeline': 'ampliseq', 'release': '2.6.1', 'sha': '3b252d263d101879c7077eae94a7a3d714b051aa', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.984347', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0917274Z 2025-08-21 21:57:44,984 - INFO - āœ… Tagged current release: ampliseq/results-3b252d263d101879c7077eae94a7a3d714b051aa +2025-08-21T21:57:45.0917865Z 2025-08-21 21:57:44,984 - INFO - Processing: airrflow/results-216706e3034e4739b0b8a330a6e736d421734107 +2025-08-21T21:57:45.0918901Z 2025-08-21 21:57:44,984 - INFO - DRY RUN: Would tag objects in airrflow/results-216706e3034e4739b0b8a330a6e736d421734107 with {'pipeline': 'airrflow', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.984383', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0920247Z 2025-08-21 21:57:44,984 - WARNING - šŸ—‘ļø Tagged orphaned directory: airrflow/results-216706e3034e4739b0b8a330a6e736d421734107 +2025-08-21T21:57:45.0920868Z 2025-08-21 21:57:44,984 - INFO - Processing: sarek/results-7ccfb36509d8380946c048065129b29d69c8443b +2025-08-21T21:57:45.0922013Z 2025-08-21 21:57:44,984 - INFO - DRY RUN: Would tag objects in sarek/results-7ccfb36509d8380946c048065129b29d69c8443b with {'pipeline': 'sarek', 'release': '2.7', 'sha': '7ccfb36509d8380946c048065129b29d69c8443b', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.984420', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0924159Z 2025-08-21 21:57:44,984 - INFO - āœ… Tagged current release: sarek/results-7ccfb36509d8380946c048065129b29d69c8443b +2025-08-21T21:57:45.0924837Z 2025-08-21 21:57:44,984 - INFO - Processing: mag/results-cf931af514a7606d82e98b38260147a7cddbdbee +2025-08-21T21:57:45.0926173Z 2025-08-21 21:57:44,984 - INFO - DRY RUN: Would tag objects in mag/results-cf931af514a7606d82e98b38260147a7cddbdbee with {'pipeline': 'mag', 'release': '3.1.0', 'sha': 'cf931af514a7606d82e98b38260147a7cddbdbee', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.984456', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0927832Z 2025-08-21 21:57:44,984 - INFO - āœ… Tagged current release: mag/results-cf931af514a7606d82e98b38260147a7cddbdbee +2025-08-21T21:57:45.0928834Z 2025-08-21 21:57:44,984 - INFO - Processing: atacseq/results-test-415795d3c14fb296c6418b427279ca34ab976844 +2025-08-21T21:57:45.0930176Z 2025-08-21 21:57:44,984 - INFO - DRY RUN: Would tag objects in atacseq/results-test-415795d3c14fb296c6418b427279ca34ab976844 with {'pipeline': 'atacseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.984545', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0931439Z 2025-08-21 21:57:44,984 - WARNING - šŸ—‘ļø Tagged orphaned directory: atacseq/results-test-415795d3c14fb296c6418b427279ca34ab976844 +2025-08-21T21:57:45.0932086Z 2025-08-21 21:57:44,984 - INFO - Processing: mag/results-727469302c0284fd66edb3d77589d880ed69535b +2025-08-21T21:57:45.0933081Z 2025-08-21 21:57:44,984 - INFO - DRY RUN: Would tag objects in mag/results-727469302c0284fd66edb3d77589d880ed69535b with {'pipeline': 'mag', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.984624', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0934217Z 2025-08-21 21:57:44,984 - WARNING - šŸ—‘ļø Tagged orphaned directory: mag/results-727469302c0284fd66edb3d77589d880ed69535b +2025-08-21T21:57:45.0934827Z 2025-08-21 21:57:44,984 - INFO - Processing: fetchngs/results-0c43cc787290d88c9127af8281bb69554d905012 +2025-08-21T21:57:45.0936219Z 2025-08-21 21:57:44,984 - INFO - DRY RUN: Would tag objects in fetchngs/results-0c43cc787290d88c9127af8281bb69554d905012 with {'pipeline': 'fetchngs', 'release': '1.4', 'sha': '0c43cc787290d88c9127af8281bb69554d905012', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.984714', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0937680Z 2025-08-21 21:57:44,984 - INFO - āœ… Tagged current release: fetchngs/results-0c43cc787290d88c9127af8281bb69554d905012 +2025-08-21T21:57:45.0938293Z 2025-08-21 21:57:44,984 - INFO - Processing: methylseq/results-04025de523dd111c9f86101255ed3d6f4c16fb5a +2025-08-21T21:57:45.0939492Z 2025-08-21 21:57:44,984 - INFO - DRY RUN: Would tag objects in methylseq/results-04025de523dd111c9f86101255ed3d6f4c16fb5a with {'pipeline': 'methylseq', 'release': '2.0.0', 'sha': '04025de523dd111c9f86101255ed3d6f4c16fb5a', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.984793', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0940798Z 2025-08-21 21:57:44,984 - INFO - āœ… Tagged current release: methylseq/results-04025de523dd111c9f86101255ed3d6f4c16fb5a +2025-08-21T21:57:45.0941393Z 2025-08-21 21:57:44,984 - INFO - Processing: sarek/results-5bb160ddb2cee50c811585e450b16cba13c95a02 +2025-08-21T21:57:45.0942563Z 2025-08-21 21:57:44,984 - INFO - DRY RUN: Would tag objects in sarek/results-5bb160ddb2cee50c811585e450b16cba13c95a02 with {'pipeline': 'sarek', 'release': '3.0', 'sha': '5bb160ddb2cee50c811585e450b16cba13c95a02', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.984885', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0943989Z 2025-08-21 21:57:44,984 - INFO - āœ… Tagged current release: sarek/results-5bb160ddb2cee50c811585e450b16cba13c95a02 +2025-08-21T21:57:45.0944618Z 2025-08-21 21:57:44,984 - INFO - Processing: genomeassembler/results-f92d65c76f7b4867142d8bd4e9dcdff212120b14 +2025-08-21T21:57:45.0946009Z 2025-08-21 21:57:44,984 - INFO - DRY RUN: Would tag objects in genomeassembler/results-f92d65c76f7b4867142d8bd4e9dcdff212120b14 with {'pipeline': 'genomeassembler', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.984965', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0947322Z 2025-08-21 21:57:44,985 - WARNING - šŸ—‘ļø Tagged orphaned directory: genomeassembler/results-f92d65c76f7b4867142d8bd4e9dcdff212120b14 +2025-08-21T21:57:45.0947993Z 2025-08-21 21:57:44,985 - INFO - Processing: chipseq/results-686c054c33ec1606aa05d2347460994dfa2cd618 +2025-08-21T21:57:45.0949043Z 2025-08-21 21:57:44,985 - INFO - DRY RUN: Would tag objects in chipseq/results-686c054c33ec1606aa05d2347460994dfa2cd618 with {'pipeline': 'chipseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.985050', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0950234Z 2025-08-21 21:57:44,985 - WARNING - šŸ—‘ļø Tagged orphaned directory: chipseq/results-686c054c33ec1606aa05d2347460994dfa2cd618 +2025-08-21T21:57:45.0950782Z 2025-08-21 21:57:44,985 - INFO - Processing: rnaseq/results-FINAL-FIX-TEST +2025-08-21T21:57:45.0951649Z 2025-08-21 21:57:44,985 - INFO - DRY RUN: Would tag objects in rnaseq/results-FINAL-FIX-TEST with {'pipeline': 'rnaseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.985134', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0952639Z 2025-08-21 21:57:44,985 - WARNING - šŸ—‘ļø Tagged orphaned directory: rnaseq/results-FINAL-FIX-TEST +2025-08-21T21:57:45.0953196Z 2025-08-21 21:57:44,985 - INFO - Processing: methylong/results-54591ed14432e29fa7049642c791817665c05cc5 +2025-08-21T21:57:45.0954248Z 2025-08-21 21:57:44,985 - INFO - DRY RUN: Would tag objects in methylong/results-54591ed14432e29fa7049642c791817665c05cc5 with {'pipeline': 'methylong', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.985214', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0955809Z 2025-08-21 21:57:44,985 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylong/results-54591ed14432e29fa7049642c791817665c05cc5 +2025-08-21T21:57:45.0956451Z 2025-08-21 21:57:44,985 - INFO - Processing: ampliseq/results-113e90bdff42a52807f5c8b3cbaafaa31c145b9d +2025-08-21T21:57:45.0957810Z 2025-08-21 21:57:44,985 - INFO - DRY RUN: Would tag objects in ampliseq/results-113e90bdff42a52807f5c8b3cbaafaa31c145b9d with {'pipeline': 'ampliseq', 'release': '2.7.1', 'sha': '113e90bdff42a52807f5c8b3cbaafaa31c145b9d', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.985294', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0959160Z 2025-08-21 21:57:44,985 - INFO - āœ… Tagged current release: ampliseq/results-113e90bdff42a52807f5c8b3cbaafaa31c145b9d +2025-08-21T21:57:45.0959759Z 2025-08-21 21:57:44,985 - INFO - Processing: demo/results-db7f526ce151cecde9c4497a4adb54f71c553ed2 +2025-08-21T21:57:45.0960987Z 2025-08-21 21:57:44,985 - INFO - DRY RUN: Would tag objects in demo/results-db7f526ce151cecde9c4497a4adb54f71c553ed2 with {'pipeline': 'demo', 'release': '1.0.2', 'sha': 'db7f526ce151cecde9c4497a4adb54f71c553ed2', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.985373', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0962260Z 2025-08-21 21:57:44,985 - INFO - āœ… Tagged current release: demo/results-db7f526ce151cecde9c4497a4adb54f71c553ed2 +2025-08-21T21:57:45.0962891Z 2025-08-21 21:57:44,985 - INFO - Processing: epitopeprediction/results-e173620ac2a10fae8d0a47f597aa723684456deb +2025-08-21T21:57:45.0964330Z 2025-08-21 21:57:44,985 - INFO - DRY RUN: Would tag objects in epitopeprediction/results-e173620ac2a10fae8d0a47f597aa723684456deb with {'pipeline': 'epitopeprediction', 'release': '2.3.0', 'sha': 'e173620ac2a10fae8d0a47f597aa723684456deb', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.985451', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0966065Z 2025-08-21 21:57:44,985 - INFO - āœ… Tagged current release: epitopeprediction/results-e173620ac2a10fae8d0a47f597aa723684456deb +2025-08-21T21:57:45.0966641Z 2025-08-21 21:57:44,985 - INFO - Processing: methylseq/results-dev-bwameth-CPU +2025-08-21T21:57:45.0967539Z 2025-08-21 21:57:44,985 - INFO - DRY RUN: Would tag objects in methylseq/results-dev-bwameth-CPU with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.985557', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0968571Z 2025-08-21 21:57:44,985 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-dev-bwameth-CPU +2025-08-21T21:57:45.0969163Z 2025-08-21 21:57:44,985 - INFO - Processing: pixelator/results-c8e57efae70d49e1bdfcca6d006bfdd669ea2a40 +2025-08-21T21:57:45.0970396Z 2025-08-21 21:57:44,985 - INFO - DRY RUN: Would tag objects in pixelator/results-c8e57efae70d49e1bdfcca6d006bfdd669ea2a40 with {'pipeline': 'pixelator', 'release': '1.0.3', 'sha': 'c8e57efae70d49e1bdfcca6d006bfdd669ea2a40', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.985639', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0971742Z 2025-08-21 21:57:44,985 - INFO - āœ… Tagged current release: pixelator/results-c8e57efae70d49e1bdfcca6d006bfdd669ea2a40 +2025-08-21T21:57:45.0972361Z 2025-08-21 21:57:44,985 - INFO - Processing: taxprofiler/results-5d3ee5513a84f92773c8376c55b5f4da39835307 +2025-08-21T21:57:45.0973583Z 2025-08-21 21:57:44,985 - INFO - DRY RUN: Would tag objects in taxprofiler/results-5d3ee5513a84f92773c8376c55b5f4da39835307 with {'pipeline': 'taxprofiler', 'release': '1.1.8', 'sha': '5d3ee5513a84f92773c8376c55b5f4da39835307', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.985719', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0974925Z 2025-08-21 21:57:44,985 - INFO - āœ… Tagged current release: taxprofiler/results-5d3ee5513a84f92773c8376c55b5f4da39835307 +2025-08-21T21:57:45.0975773Z 2025-08-21 21:57:44,985 - INFO - Processing: airrflow/results-0c0bcde09516df6dd5532e7eb88906673d00370b +2025-08-21T21:57:45.0976972Z 2025-08-21 21:57:44,985 - INFO - DRY RUN: Would tag objects in airrflow/results-0c0bcde09516df6dd5532e7eb88906673d00370b with {'pipeline': 'airrflow', 'release': '4.1.0', 'sha': '0c0bcde09516df6dd5532e7eb88906673d00370b', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.985796', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0978285Z 2025-08-21 21:57:44,985 - INFO - āœ… Tagged current release: airrflow/results-0c0bcde09516df6dd5532e7eb88906673d00370b +2025-08-21T21:57:45.0978898Z 2025-08-21 21:57:44,985 - INFO - Processing: rnaseq/results-test-eb5392adde8e606539701a2d6327b8cb3e89c6e2 +2025-08-21T21:57:45.0980113Z 2025-08-21 21:57:44,985 - INFO - DRY RUN: Would tag objects in rnaseq/results-test-eb5392adde8e606539701a2d6327b8cb3e89c6e2 with {'pipeline': 'rnaseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.985875', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0981352Z 2025-08-21 21:57:44,985 - WARNING - šŸ—‘ļø Tagged orphaned directory: rnaseq/results-test-eb5392adde8e606539701a2d6327b8cb3e89c6e2 +2025-08-21T21:57:45.0982016Z 2025-08-21 21:57:44,985 - INFO - Processing: fetchngs/results-test-f794ea3cb15147c339cae6225c82a408834597a3 +2025-08-21T21:57:45.0983101Z 2025-08-21 21:57:44,985 - INFO - DRY RUN: Would tag objects in fetchngs/results-test-f794ea3cb15147c339cae6225c82a408834597a3 with {'pipeline': 'fetchngs', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.985959', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0984352Z 2025-08-21 21:57:44,985 - WARNING - šŸ—‘ļø Tagged orphaned directory: fetchngs/results-test-f794ea3cb15147c339cae6225c82a408834597a3 +2025-08-21T21:57:45.0985334Z 2025-08-21 21:57:44,986 - INFO - Processing: mag/results-74b5c92b9226d3ae19c20ed9f1d107e9273c0d00 +2025-08-21T21:57:45.0986554Z 2025-08-21 21:57:44,986 - INFO - DRY RUN: Would tag objects in mag/results-74b5c92b9226d3ae19c20ed9f1d107e9273c0d00 with {'pipeline': 'mag', 'release': '3.2.0', 'sha': '74b5c92b9226d3ae19c20ed9f1d107e9273c0d00', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.986043', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0987818Z 2025-08-21 21:57:44,986 - INFO - āœ… Tagged current release: mag/results-74b5c92b9226d3ae19c20ed9f1d107e9273c0d00 +2025-08-21T21:57:45.0988436Z 2025-08-21 21:57:44,986 - INFO - Processing: bamtofastq/results-test-008854c4eb65d5f5197f9f827c0ba108981d4b51 +2025-08-21T21:57:45.0989553Z 2025-08-21 21:57:44,986 - INFO - DRY RUN: Would tag objects in bamtofastq/results-test-008854c4eb65d5f5197f9f827c0ba108981d4b51 with {'pipeline': 'bamtofastq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.986123', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0990835Z 2025-08-21 21:57:44,986 - WARNING - šŸ—‘ļø Tagged orphaned directory: bamtofastq/results-test-008854c4eb65d5f5197f9f827c0ba108981d4b51 +2025-08-21T21:57:45.0991488Z 2025-08-21 21:57:44,986 - INFO - Processing: rnaseq/results-fe39f59aa5911075f5bfa2c7e4435fe6ddb6812d +2025-08-21T21:57:45.0992519Z 2025-08-21 21:57:44,986 - INFO - DRY RUN: Would tag objects in rnaseq/results-fe39f59aa5911075f5bfa2c7e4435fe6ddb6812d with {'pipeline': 'rnaseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.986205', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0993700Z 2025-08-21 21:57:44,986 - WARNING - šŸ—‘ļø Tagged orphaned directory: rnaseq/results-fe39f59aa5911075f5bfa2c7e4435fe6ddb6812d +2025-08-21T21:57:45.0994325Z 2025-08-21 21:57:44,986 - INFO - Processing: mag/results-test-21c97169243b2b3a85df9f90d002c165c10a9ae1 +2025-08-21T21:57:45.0995557Z 2025-08-21 21:57:44,986 - INFO - DRY RUN: Would tag objects in mag/results-test-21c97169243b2b3a85df9f90d002c165c10a9ae1 with {'pipeline': 'mag', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.986287', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.0996754Z 2025-08-21 21:57:44,986 - WARNING - šŸ—‘ļø Tagged orphaned directory: mag/results-test-21c97169243b2b3a85df9f90d002c165c10a9ae1 +2025-08-21T21:57:45.0997385Z 2025-08-21 21:57:44,986 - INFO - Processing: ampliseq/results-3beb2392044ad0575df76b54b0a5a26c6ce4b32a +2025-08-21T21:57:45.0998577Z 2025-08-21 21:57:44,986 - INFO - DRY RUN: Would tag objects in ampliseq/results-3beb2392044ad0575df76b54b0a5a26c6ce4b32a with {'pipeline': 'ampliseq', 'release': '2.2.0', 'sha': '3beb2392044ad0575df76b54b0a5a26c6ce4b32a', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.986368', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1000021Z 2025-08-21 21:57:44,986 - INFO - āœ… Tagged current release: ampliseq/results-3beb2392044ad0575df76b54b0a5a26c6ce4b32a +2025-08-21T21:57:45.1000647Z 2025-08-21 21:57:44,986 - INFO - Processing: scrnaseq/results-ca7c05afdd5c41dc31a5a32bb207d19767836ca5 +2025-08-21T21:57:45.1001843Z 2025-08-21 21:57:44,986 - INFO - DRY RUN: Would tag objects in scrnaseq/results-ca7c05afdd5c41dc31a5a32bb207d19767836ca5 with {'pipeline': 'scrnaseq', 'release': '2.4.1', 'sha': 'ca7c05afdd5c41dc31a5a32bb207d19767836ca5', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.986447', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1003162Z 2025-08-21 21:57:44,986 - INFO - āœ… Tagged current release: scrnaseq/results-ca7c05afdd5c41dc31a5a32bb207d19767836ca5 +2025-08-21T21:57:45.1003817Z 2025-08-21 21:57:44,986 - INFO - Processing: differentialabundance/results-44c449be0a703c64a7c323a2b431ec6627194f00 +2025-08-21T21:57:45.1005361Z 2025-08-21 21:57:44,986 - INFO - DRY RUN: Would tag objects in differentialabundance/results-44c449be0a703c64a7c323a2b431ec6627194f00 with {'pipeline': 'differentialabundance', 'release': '1.3.1', 'sha': '44c449be0a703c64a7c323a2b431ec6627194f00', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.986550', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1006985Z 2025-08-21 21:57:44,986 - INFO - āœ… Tagged current release: differentialabundance/results-44c449be0a703c64a7c323a2b431ec6627194f00 +2025-08-21T21:57:45.1007642Z 2025-08-21 21:57:44,986 - INFO - Processing: fetchngs/results-3bd6ea5f0e657dde934ac4c8f7cb28ad19d14df7 +2025-08-21T21:57:45.1008846Z 2025-08-21 21:57:44,986 - INFO - DRY RUN: Would tag objects in fetchngs/results-3bd6ea5f0e657dde934ac4c8f7cb28ad19d14df7 with {'pipeline': 'fetchngs', 'release': '1.1', 'sha': '3bd6ea5f0e657dde934ac4c8f7cb28ad19d14df7', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.986634', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1010163Z 2025-08-21 21:57:44,986 - INFO - āœ… Tagged current release: fetchngs/results-3bd6ea5f0e657dde934ac4c8f7cb28ad19d14df7 +2025-08-21T21:57:45.1010783Z 2025-08-21 21:57:44,986 - INFO - Processing: phaseimpute/results-48eb141662ff6593615c04ef10044178e60c8f4e +2025-08-21T21:57:45.1011870Z 2025-08-21 21:57:44,986 - INFO - DRY RUN: Would tag objects in phaseimpute/results-48eb141662ff6593615c04ef10044178e60c8f4e with {'pipeline': 'phaseimpute', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.986714', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1013107Z 2025-08-21 21:57:44,986 - WARNING - šŸ—‘ļø Tagged orphaned directory: phaseimpute/results-48eb141662ff6593615c04ef10044178e60c8f4e +2025-08-21T21:57:45.1013740Z 2025-08-21 21:57:44,986 - INFO - Processing: rnaseq/results-738ddaa093ce85c7ea0046f57a8e19da3623f06b +2025-08-21T21:57:45.1014775Z 2025-08-21 21:57:44,986 - INFO - DRY RUN: Would tag objects in rnaseq/results-738ddaa093ce85c7ea0046f57a8e19da3623f06b with {'pipeline': 'rnaseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.986795', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1016191Z 2025-08-21 21:57:44,986 - WARNING - šŸ—‘ļø Tagged orphaned directory: rnaseq/results-738ddaa093ce85c7ea0046f57a8e19da3623f06b +2025-08-21T21:57:45.1016823Z 2025-08-21 21:57:44,986 - INFO - Processing: ampliseq/results-4e48b7100302e2576ac1be2ccc7d464253e9d20e +2025-08-21T21:57:45.1018005Z 2025-08-21 21:57:44,986 - INFO - DRY RUN: Would tag objects in ampliseq/results-4e48b7100302e2576ac1be2ccc7d464253e9d20e with {'pipeline': 'ampliseq', 'release': '2.7.0', 'sha': '4e48b7100302e2576ac1be2ccc7d464253e9d20e', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.986876', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1019302Z 2025-08-21 21:57:44,986 - INFO - āœ… Tagged current release: ampliseq/results-4e48b7100302e2576ac1be2ccc7d464253e9d20e +2025-08-21T21:57:45.1019913Z 2025-08-21 21:57:44,986 - INFO - Processing: phyloplace/results-665a4c2d3c39e8684ef6c3fdef680817ee876498 +2025-08-21T21:57:45.1021283Z 2025-08-21 21:57:44,986 - INFO - DRY RUN: Would tag objects in phyloplace/results-665a4c2d3c39e8684ef6c3fdef680817ee876498 with {'pipeline': 'phyloplace', 'release': '1.0.0', 'sha': '665a4c2d3c39e8684ef6c3fdef680817ee876498', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.986955', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1022640Z 2025-08-21 21:57:44,986 - INFO - āœ… Tagged current release: phyloplace/results-665a4c2d3c39e8684ef6c3fdef680817ee876498 +2025-08-21T21:57:45.1023243Z 2025-08-21 21:57:44,987 - INFO - Processing: rnaseq/results-6e1e448f535ccf34d11cc691bb241cfd6e60a647 +2025-08-21T21:57:45.1024418Z 2025-08-21 21:57:44,987 - INFO - DRY RUN: Would tag objects in rnaseq/results-6e1e448f535ccf34d11cc691bb241cfd6e60a647 with {'pipeline': 'rnaseq', 'release': '3.10.1', 'sha': '6e1e448f535ccf34d11cc691bb241cfd6e60a647', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.987032', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1026023Z 2025-08-21 21:57:44,987 - INFO - āœ… Tagged current release: rnaseq/results-6e1e448f535ccf34d11cc691bb241cfd6e60a647 +2025-08-21T21:57:45.1026650Z 2025-08-21 21:57:44,987 - INFO - Processing: testpipeline/results-28e764e2819b58bed488faca4862944bb4787bce +2025-08-21T21:57:45.1028052Z 2025-08-21 21:57:44,987 - INFO - DRY RUN: Would tag objects in testpipeline/results-28e764e2819b58bed488faca4862944bb4787bce with {'pipeline': 'testpipeline', 'release': '2.0', 'sha': '28e764e2819b58bed488faca4862944bb4787bce', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.987109', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1028450Z 2025-08-21 21:57:44,987 - INFO - āœ… Tagged current release: testpipeline/results-28e764e2819b58bed488faca4862944bb4787bce +2025-08-21T21:57:45.1028700Z 2025-08-21 21:57:44,987 - INFO - Processing: bamtofastq/results-3d1e65bfd04ed30066f0258dd793551fbba0ca4a +2025-08-21T21:57:45.1029462Z 2025-08-21 21:57:44,987 - INFO - DRY RUN: Would tag objects in bamtofastq/results-3d1e65bfd04ed30066f0258dd793551fbba0ca4a with {'pipeline': 'bamtofastq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.987186', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1029882Z 2025-08-21 21:57:44,987 - WARNING - šŸ—‘ļø Tagged orphaned directory: bamtofastq/results-3d1e65bfd04ed30066f0258dd793551fbba0ca4a +2025-08-21T21:57:45.1030144Z 2025-08-21 21:57:44,987 - INFO - Processing: marsseq/results-test-dda9122454b0d9e5bcdd481008c216eb52da16b2 +2025-08-21T21:57:45.1030884Z 2025-08-21 21:57:44,987 - INFO - DRY RUN: Would tag objects in marsseq/results-test-dda9122454b0d9e5bcdd481008c216eb52da16b2 with {'pipeline': 'marsseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.987267', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1031306Z 2025-08-21 21:57:44,987 - WARNING - šŸ—‘ļø Tagged orphaned directory: marsseq/results-test-dda9122454b0d9e5bcdd481008c216eb52da16b2 +2025-08-21T21:57:45.1031553Z 2025-08-21 21:57:44,987 - INFO - Processing: cutandrun/results-971984a48ad4dc5b39fc20b56c5729f4ca20379a +2025-08-21T21:57:45.1032434Z 2025-08-21 21:57:44,987 - INFO - DRY RUN: Would tag objects in cutandrun/results-971984a48ad4dc5b39fc20b56c5729f4ca20379a with {'pipeline': 'cutandrun', 'release': '2.0', 'sha': '971984a48ad4dc5b39fc20b56c5729f4ca20379a', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.987347', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1032809Z 2025-08-21 21:57:44,987 - INFO - āœ… Tagged current release: cutandrun/results-971984a48ad4dc5b39fc20b56c5729f4ca20379a +2025-08-21T21:57:45.1033037Z 2025-08-21 21:57:44,987 - INFO - Processing: mag/results-675b72706a9fbb134447b1b13b93ce65884c8973 +2025-08-21T21:57:45.1033717Z 2025-08-21 21:57:44,987 - INFO - DRY RUN: Would tag objects in mag/results-675b72706a9fbb134447b1b13b93ce65884c8973 with {'pipeline': 'mag', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.987426', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1034095Z 2025-08-21 21:57:44,987 - WARNING - šŸ—‘ļø Tagged orphaned directory: mag/results-675b72706a9fbb134447b1b13b93ce65884c8973 +2025-08-21T21:57:45.1034445Z 2025-08-21 21:57:44,987 - INFO - Processing: sarek/results-6aeac929c924ba382baa42a0fe969b4e0e753ca9 +2025-08-21T21:57:45.1035533Z 2025-08-21 21:57:44,987 - INFO - DRY RUN: Would tag objects in sarek/results-6aeac929c924ba382baa42a0fe969b4e0e753ca9 with {'pipeline': 'sarek', 'release': '3.4.0', 'sha': '6aeac929c924ba382baa42a0fe969b4e0e753ca9', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.987520', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1035920Z 2025-08-21 21:57:44,987 - INFO - āœ… Tagged current release: sarek/results-6aeac929c924ba382baa42a0fe969b4e0e753ca9 +2025-08-21T21:57:45.1036173Z 2025-08-21 21:57:44,987 - INFO - Processing: hgtseq/results-4cd916f0c15e2c1a6a4a09228981cfd919b33222 +2025-08-21T21:57:45.1037045Z 2025-08-21 21:57:44,987 - INFO - DRY RUN: Would tag objects in hgtseq/results-4cd916f0c15e2c1a6a4a09228981cfd919b33222 with {'pipeline': 'hgtseq', 'release': '1.0.0', 'sha': '4cd916f0c15e2c1a6a4a09228981cfd919b33222', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.987604', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1037593Z 2025-08-21 21:57:44,987 - INFO - āœ… Tagged current release: hgtseq/results-4cd916f0c15e2c1a6a4a09228981cfd919b33222 +2025-08-21T21:57:45.1037826Z 2025-08-21 21:57:44,987 - INFO - Processing: bacass/results-e94a17331129cff2b9e2558d7698209f0cc3fcac +2025-08-21T21:57:45.1038679Z 2025-08-21 21:57:44,987 - INFO - DRY RUN: Would tag objects in bacass/results-e94a17331129cff2b9e2558d7698209f0cc3fcac with {'pipeline': 'bacass', 'release': '2.1.0', 'sha': 'e94a17331129cff2b9e2558d7698209f0cc3fcac', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.987681', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1039035Z 2025-08-21 21:57:44,987 - INFO - āœ… Tagged current release: bacass/results-e94a17331129cff2b9e2558d7698209f0cc3fcac +2025-08-21T21:57:45.1039286Z 2025-08-21 21:57:44,987 - INFO - Processing: methylseq/results-b3e5e3b95aaf01d98391a62a10a3990c0a4de395 +2025-08-21T21:57:45.1040173Z 2025-08-21 21:57:44,987 - INFO - DRY RUN: Would tag objects in methylseq/results-b3e5e3b95aaf01d98391a62a10a3990c0a4de395 with {'pipeline': 'methylseq', 'release': '1.6', 'sha': 'b3e5e3b95aaf01d98391a62a10a3990c0a4de395', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.987757', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1040560Z 2025-08-21 21:57:44,987 - INFO - āœ… Tagged current release: methylseq/results-b3e5e3b95aaf01d98391a62a10a3990c0a4de395 +2025-08-21T21:57:45.1040798Z 2025-08-21 21:57:44,987 - INFO - Processing: rnaseq/results-4053b2ec173fc0cfdd13ff2b51cfaceb59f783cb +2025-08-21T21:57:45.1041663Z 2025-08-21 21:57:44,987 - INFO - DRY RUN: Would tag objects in rnaseq/results-4053b2ec173fc0cfdd13ff2b51cfaceb59f783cb with {'pipeline': 'rnaseq', 'release': '3.15.1', 'sha': '4053b2ec173fc0cfdd13ff2b51cfaceb59f783cb', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.987834', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1042021Z 2025-08-21 21:57:44,987 - INFO - āœ… Tagged current release: rnaseq/results-4053b2ec173fc0cfdd13ff2b51cfaceb59f783cb +2025-08-21T21:57:45.1042318Z 2025-08-21 21:57:44,987 - INFO - Processing: rnaseq/results-fusion-dupradar +2025-08-21T21:57:45.1042948Z 2025-08-21 21:57:44,987 - INFO - DRY RUN: Would tag objects in rnaseq/results-fusion-dupradar with {'pipeline': 'rnaseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.987912', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1043254Z 2025-08-21 21:57:44,987 - WARNING - šŸ—‘ļø Tagged orphaned directory: rnaseq/results-fusion-dupradar +2025-08-21T21:57:45.1043490Z 2025-08-21 21:57:44,987 - INFO - Processing: sarek/results-e92242ead3dff8e24e13adbbd81bfbc0b6862e4c +2025-08-21T21:57:45.1044379Z 2025-08-21 21:57:44,987 - INFO - DRY RUN: Would tag objects in sarek/results-e92242ead3dff8e24e13adbbd81bfbc0b6862e4c with {'pipeline': 'sarek', 'release': '3.4.3', 'sha': 'e92242ead3dff8e24e13adbbd81bfbc0b6862e4c', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.987990', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1044832Z 2025-08-21 21:57:44,988 - INFO - āœ… Tagged current release: sarek/results-e92242ead3dff8e24e13adbbd81bfbc0b6862e4c +2025-08-21T21:57:45.1045166Z 2025-08-21 21:57:44,988 - INFO - Processing: sarek/results-68b9930a74962f3c42eee71f51e6dd2646269199 +2025-08-21T21:57:45.1045998Z 2025-08-21 21:57:44,988 - INFO - DRY RUN: Would tag objects in sarek/results-68b9930a74962f3c42eee71f51e6dd2646269199 with {'pipeline': 'sarek', 'release': '2.7.1', 'sha': '68b9930a74962f3c42eee71f51e6dd2646269199', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.988067', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1046354Z 2025-08-21 21:57:44,988 - INFO - āœ… Tagged current release: sarek/results-68b9930a74962f3c42eee71f51e6dd2646269199 +2025-08-21T21:57:45.1046603Z 2025-08-21 21:57:44,988 - INFO - Processing: taxprofiler/results-697647ff36461ad962a21cc57e6554d334d59b7c +2025-08-21T21:57:45.1047366Z 2025-08-21 21:57:44,988 - INFO - DRY RUN: Would tag objects in taxprofiler/results-697647ff36461ad962a21cc57e6554d334d59b7c with {'pipeline': 'taxprofiler', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.988150', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1047786Z 2025-08-21 21:57:44,988 - WARNING - šŸ—‘ļø Tagged orphaned directory: taxprofiler/results-697647ff36461ad962a21cc57e6554d334d59b7c +2025-08-21T21:57:45.1048036Z 2025-08-21 21:57:44,988 - INFO - Processing: createtaxdb/results-93e384121e51c67101479ff1eebc86177d083786 +2025-08-21T21:57:45.1048774Z 2025-08-21 21:57:44,988 - INFO - DRY RUN: Would tag objects in createtaxdb/results-93e384121e51c67101479ff1eebc86177d083786 with {'pipeline': 'createtaxdb', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.988231', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1049188Z 2025-08-21 21:57:44,988 - WARNING - šŸ—‘ļø Tagged orphaned directory: createtaxdb/results-93e384121e51c67101479ff1eebc86177d083786 +2025-08-21T21:57:45.1049485Z 2025-08-21 21:57:44,988 - INFO - Processing: differentialabundance/results-e2e26764a199f279a015f94b4f8329c16b6f79c8 +2025-08-21T21:57:45.1050467Z 2025-08-21 21:57:44,988 - INFO - DRY RUN: Would tag objects in differentialabundance/results-e2e26764a199f279a015f94b4f8329c16b6f79c8 with {'pipeline': 'differentialabundance', 'release': '1.3.0', 'sha': 'e2e26764a199f279a015f94b4f8329c16b6f79c8', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.988312', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1050894Z 2025-08-21 21:57:44,988 - INFO - āœ… Tagged current release: differentialabundance/results-e2e26764a199f279a015f94b4f8329c16b6f79c8 +2025-08-21T21:57:45.1051140Z 2025-08-21 21:57:44,988 - INFO - Processing: viralrecon/results-42e38bba3da80484bc480f53d2130642a349e8c6 +2025-08-21T21:57:45.1052148Z 2025-08-21 21:57:44,988 - INFO - DRY RUN: Would tag objects in viralrecon/results-42e38bba3da80484bc480f53d2130642a349e8c6 with {'pipeline': 'viralrecon', 'release': '2.4.1', 'sha': '42e38bba3da80484bc480f53d2130642a349e8c6', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.988390', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1052537Z 2025-08-21 21:57:44,988 - INFO - āœ… Tagged current release: viralrecon/results-42e38bba3da80484bc480f53d2130642a349e8c6 +2025-08-21T21:57:45.1052818Z 2025-08-21 21:57:44,988 - INFO - Processing: drugresponseeval/results-00ebfddaa69eb3332d9f1eaa6a517c875807a129 +2025-08-21T21:57:45.1053617Z 2025-08-21 21:57:44,988 - INFO - DRY RUN: Would tag objects in drugresponseeval/results-00ebfddaa69eb3332d9f1eaa6a517c875807a129 with {'pipeline': 'drugresponseeval', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.988467', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1054065Z 2025-08-21 21:57:44,988 - WARNING - šŸ—‘ļø Tagged orphaned directory: drugresponseeval/results-00ebfddaa69eb3332d9f1eaa6a517c875807a129 +2025-08-21T21:57:45.1054311Z 2025-08-21 21:57:44,988 - INFO - Processing: detaxizer/results-d4ef442ad05ca3a3da9d647e597806ed093845dd +2025-08-21T21:57:45.1055256Z 2025-08-21 21:57:44,988 - INFO - DRY RUN: Would tag objects in detaxizer/results-d4ef442ad05ca3a3da9d647e597806ed093845dd with {'pipeline': 'detaxizer', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.988566', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1055834Z 2025-08-21 21:57:44,988 - WARNING - šŸ—‘ļø Tagged orphaned directory: detaxizer/results-d4ef442ad05ca3a3da9d647e597806ed093845dd +2025-08-21T21:57:45.1056093Z 2025-08-21 21:57:44,988 - INFO - Processing: cutandrun/results-2727de382fb7df8f37fc4c6dbde99c979be04e77 +2025-08-21T21:57:45.1056987Z 2025-08-21 21:57:44,988 - INFO - DRY RUN: Would tag objects in cutandrun/results-2727de382fb7df8f37fc4c6dbde99c979be04e77 with {'pipeline': 'cutandrun', 'release': '3.2.1', 'sha': '2727de382fb7df8f37fc4c6dbde99c979be04e77', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.988647', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1057374Z 2025-08-21 21:57:44,988 - INFO - āœ… Tagged current release: cutandrun/results-2727de382fb7df8f37fc4c6dbde99c979be04e77 +2025-08-21T21:57:45.1057621Z 2025-08-21 21:57:44,988 - INFO - Processing: pangenome/results-0e8a38734ea3c0397f94416a0146a2972fe2db8b +2025-08-21T21:57:45.1058494Z 2025-08-21 21:57:44,988 - INFO - DRY RUN: Would tag objects in pangenome/results-0e8a38734ea3c0397f94416a0146a2972fe2db8b with {'pipeline': 'pangenome', 'release': '1.1.2', 'sha': '0e8a38734ea3c0397f94416a0146a2972fe2db8b', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.988725', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1058855Z 2025-08-21 21:57:44,988 - INFO - āœ… Tagged current release: pangenome/results-0e8a38734ea3c0397f94416a0146a2972fe2db8b +2025-08-21T21:57:45.1059112Z 2025-08-21 21:57:44,988 - INFO - Processing: taxprofiler/results-f1e6153e4234c899c5db50e58638fddb58b9f219 +2025-08-21T21:57:45.1060001Z 2025-08-21 21:57:44,988 - INFO - DRY RUN: Would tag objects in taxprofiler/results-f1e6153e4234c899c5db50e58638fddb58b9f219 with {'pipeline': 'taxprofiler', 'release': '1.1.7', 'sha': 'f1e6153e4234c899c5db50e58638fddb58b9f219', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.988802', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1060389Z 2025-08-21 21:57:44,988 - INFO - āœ… Tagged current release: taxprofiler/results-f1e6153e4234c899c5db50e58638fddb58b9f219 +2025-08-21T21:57:45.1060628Z 2025-08-21 21:57:44,988 - INFO - Processing: nascent/results-02bbefb701598dc96d29da23d90d60a9ffadd18d +2025-08-21T21:57:45.1061495Z 2025-08-21 21:57:44,988 - INFO - DRY RUN: Would tag objects in nascent/results-02bbefb701598dc96d29da23d90d60a9ffadd18d with {'pipeline': 'nascent', 'release': '2.2.0', 'sha': '02bbefb701598dc96d29da23d90d60a9ffadd18d', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.988878', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1061855Z 2025-08-21 21:57:44,988 - INFO - āœ… Tagged current release: nascent/results-02bbefb701598dc96d29da23d90d60a9ffadd18d +2025-08-21T21:57:45.1062223Z 2025-08-21 21:57:44,988 - INFO - Processing: createtaxdb/results-d5f5b91490aa58d3e34c8b5923cc01c96d656ea7 +2025-08-21T21:57:45.1062985Z 2025-08-21 21:57:44,988 - INFO - DRY RUN: Would tag objects in createtaxdb/results-d5f5b91490aa58d3e34c8b5923cc01c96d656ea7 with {'pipeline': 'createtaxdb', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.988955', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1063405Z 2025-08-21 21:57:44,988 - WARNING - šŸ—‘ļø Tagged orphaned directory: createtaxdb/results-d5f5b91490aa58d3e34c8b5923cc01c96d656ea7 +2025-08-21T21:57:45.1063676Z 2025-08-21 21:57:44,989 - INFO - Processing: proteinfamilies/results-4b8c2c06c37b1aa87c7f696b2d94980af2346ef6 +2025-08-21T21:57:45.1064607Z 2025-08-21 21:57:44,989 - INFO - DRY RUN: Would tag objects in proteinfamilies/results-4b8c2c06c37b1aa87c7f696b2d94980af2346ef6 with {'pipeline': 'proteinfamilies', 'release': '1.3.0', 'sha': '4b8c2c06c37b1aa87c7f696b2d94980af2346ef6', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.989034', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1065375Z 2025-08-21 21:57:44,989 - INFO - āœ… Tagged current release: proteinfamilies/results-4b8c2c06c37b1aa87c7f696b2d94980af2346ef6 +2025-08-21T21:57:45.1065647Z 2025-08-21 21:57:44,989 - INFO - Processing: demultiplex/results-8a2a2f0be60e5f4178f0b1e91147dc98761d1e89 +2025-08-21T21:57:45.1066404Z 2025-08-21 21:57:44,989 - INFO - DRY RUN: Would tag objects in demultiplex/results-8a2a2f0be60e5f4178f0b1e91147dc98761d1e89 with {'pipeline': 'demultiplex', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.989114', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1066833Z 2025-08-21 21:57:44,989 - WARNING - šŸ—‘ļø Tagged orphaned directory: demultiplex/results-8a2a2f0be60e5f4178f0b1e91147dc98761d1e89 +2025-08-21T21:57:45.1067071Z 2025-08-21 21:57:44,989 - INFO - Processing: circdna/results-8e0e14c84f90c94d975c2bac6bde8e5a1d5bc8ab +2025-08-21T21:57:45.1067945Z 2025-08-21 21:57:44,989 - INFO - DRY RUN: Would tag objects in circdna/results-8e0e14c84f90c94d975c2bac6bde8e5a1d5bc8ab with {'pipeline': 'circdna', 'release': '1.1.0', 'sha': '8e0e14c84f90c94d975c2bac6bde8e5a1d5bc8ab', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.989193', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1068316Z 2025-08-21 21:57:44,989 - INFO - āœ… Tagged current release: circdna/results-8e0e14c84f90c94d975c2bac6bde8e5a1d5bc8ab +2025-08-21T21:57:45.1068548Z 2025-08-21 21:57:44,989 - INFO - Processing: nanoseq/results-47c7d850b7207864e87b4909699bd926c50626e1 +2025-08-21T21:57:45.1069257Z 2025-08-21 21:57:44,989 - INFO - DRY RUN: Would tag objects in nanoseq/results-47c7d850b7207864e87b4909699bd926c50626e1 with {'pipeline': 'nanoseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.989272', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1069649Z 2025-08-21 21:57:44,989 - WARNING - šŸ—‘ļø Tagged orphaned directory: nanoseq/results-47c7d850b7207864e87b4909699bd926c50626e1 +2025-08-21T21:57:45.1069921Z 2025-08-21 21:57:44,989 - INFO - Processing: airrflow/results-test-11d4b9b0d6d3335d62ee17dff2697a0b5c2f2f75 +2025-08-21T21:57:45.1070678Z 2025-08-21 21:57:44,989 - INFO - DRY RUN: Would tag objects in airrflow/results-test-11d4b9b0d6d3335d62ee17dff2697a0b5c2f2f75 with {'pipeline': 'airrflow', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.989352', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1071100Z 2025-08-21 21:57:44,989 - WARNING - šŸ—‘ļø Tagged orphaned directory: airrflow/results-test-11d4b9b0d6d3335d62ee17dff2697a0b5c2f2f75 +2025-08-21T21:57:45.1071355Z 2025-08-21 21:57:44,989 - INFO - Processing: raredisease/results-c7a6f389c9b958bf5099c1f48c9b8145d755510f +2025-08-21T21:57:45.1072250Z 2025-08-21 21:57:44,989 - INFO - DRY RUN: Would tag objects in raredisease/results-c7a6f389c9b958bf5099c1f48c9b8145d755510f with {'pipeline': 'raredisease', 'release': '2.1.0', 'sha': 'c7a6f389c9b958bf5099c1f48c9b8145d755510f', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.989434', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1072769Z 2025-08-21 21:57:44,989 - INFO - āœ… Tagged current release: raredisease/results-c7a6f389c9b958bf5099c1f48c9b8145d755510f +2025-08-21T21:57:45.1073004Z 2025-08-21 21:57:44,989 - INFO - Processing: sarek/results-90725eb1f28e8877d9a1c02b45ab986e2a2a12e4 +2025-08-21T21:57:45.1073710Z 2025-08-21 21:57:44,989 - INFO - DRY RUN: Would tag objects in sarek/results-90725eb1f28e8877d9a1c02b45ab986e2a2a12e4 with {'pipeline': 'sarek', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.989532', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1074098Z 2025-08-21 21:57:44,989 - WARNING - šŸ—‘ļø Tagged orphaned directory: sarek/results-90725eb1f28e8877d9a1c02b45ab986e2a2a12e4 +2025-08-21T21:57:45.1074354Z 2025-08-21 21:57:44,989 - INFO - Processing: demultiplex/results-aaaf54442ed1fc46378d60c1954dd599fc05cb3f +2025-08-21T21:57:45.1075464Z 2025-08-21 21:57:44,989 - INFO - DRY RUN: Would tag objects in demultiplex/results-aaaf54442ed1fc46378d60c1954dd599fc05cb3f with {'pipeline': 'demultiplex', 'release': '1.4.0', 'sha': 'aaaf54442ed1fc46378d60c1954dd599fc05cb3f', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.989618', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1075992Z 2025-08-21 21:57:44,989 - INFO - āœ… Tagged current release: demultiplex/results-aaaf54442ed1fc46378d60c1954dd599fc05cb3f +2025-08-21T21:57:45.1076298Z 2025-08-21 21:57:44,989 - INFO - Processing: methylseq/results-335f2a865a07a4b1b084830149412e404a736db2-bismark_hisat-ARM +2025-08-21T21:57:45.1077093Z 2025-08-21 21:57:44,989 - INFO - DRY RUN: Would tag objects in methylseq/results-335f2a865a07a4b1b084830149412e404a736db2-bismark_hisat-ARM with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.989695', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1077579Z 2025-08-21 21:57:44,989 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-335f2a865a07a4b1b084830149412e404a736db2-bismark_hisat-ARM +2025-08-21T21:57:45.1077833Z 2025-08-21 21:57:44,989 - INFO - Processing: ampliseq/results-3278e5b6ef1151c0ed53d7660d4d8a4879a30f9b +2025-08-21T21:57:45.1078562Z 2025-08-21 21:57:44,989 - INFO - DRY RUN: Would tag objects in ampliseq/results-3278e5b6ef1151c0ed53d7660d4d8a4879a30f9b with {'pipeline': 'ampliseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.989777', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1078967Z 2025-08-21 21:57:44,989 - WARNING - šŸ—‘ļø Tagged orphaned directory: ampliseq/results-3278e5b6ef1151c0ed53d7660d4d8a4879a30f9b +2025-08-21T21:57:45.1079198Z 2025-08-21 21:57:44,989 - INFO - Processing: eager/results-b5a8f0f7682570c6fa7aa351b81b41af9cc5aaa1 +2025-08-21T21:57:45.1080052Z 2025-08-21 21:57:44,989 - INFO - DRY RUN: Would tag objects in eager/results-b5a8f0f7682570c6fa7aa351b81b41af9cc5aaa1 with {'pipeline': 'eager', 'release': '2.3.2', 'sha': 'b5a8f0f7682570c6fa7aa351b81b41af9cc5aaa1', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.989855', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1080417Z 2025-08-21 21:57:44,989 - INFO - āœ… Tagged current release: eager/results-b5a8f0f7682570c6fa7aa351b81b41af9cc5aaa1 +2025-08-21T21:57:45.1080657Z 2025-08-21 21:57:44,989 - INFO - Processing: fetchngs/results-b9f830071028e423387dcd398fc67b4d28eab9e3 +2025-08-21T21:57:45.1081380Z 2025-08-21 21:57:44,989 - INFO - DRY RUN: Would tag objects in fetchngs/results-b9f830071028e423387dcd398fc67b4d28eab9e3 with {'pipeline': 'fetchngs', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.989933', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1081779Z 2025-08-21 21:57:44,989 - WARNING - šŸ—‘ļø Tagged orphaned directory: fetchngs/results-b9f830071028e423387dcd398fc67b4d28eab9e3 +2025-08-21T21:57:45.1082030Z 2025-08-21 21:57:44,989 - INFO - Processing: bamtofastq/results-c70f49b20c83c72a0e6198e4b13edb5e2fb14725 +2025-08-21T21:57:45.1083025Z 2025-08-21 21:57:44,990 - INFO - DRY RUN: Would tag objects in bamtofastq/results-c70f49b20c83c72a0e6198e4b13edb5e2fb14725 with {'pipeline': 'bamtofastq', 'release': '2.1.0', 'sha': 'c70f49b20c83c72a0e6198e4b13edb5e2fb14725', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.990012', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1083412Z 2025-08-21 21:57:44,990 - INFO - āœ… Tagged current release: bamtofastq/results-c70f49b20c83c72a0e6198e4b13edb5e2fb14725 +2025-08-21T21:57:45.1083669Z 2025-08-21 21:57:44,990 - INFO - Processing: taxprofiler/results-4403cce6de7e6d55de609edf98c3acf00cd16bef +2025-08-21T21:57:45.1084424Z 2025-08-21 21:57:44,990 - INFO - DRY RUN: Would tag objects in taxprofiler/results-4403cce6de7e6d55de609edf98c3acf00cd16bef with {'pipeline': 'taxprofiler', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.990091', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1084844Z 2025-08-21 21:57:44,990 - WARNING - šŸ—‘ļø Tagged orphaned directory: taxprofiler/results-4403cce6de7e6d55de609edf98c3acf00cd16bef +2025-08-21T21:57:45.1085284Z 2025-08-21 21:57:44,990 - INFO - Processing: molkart/results-a19ce7354c902be94f82f20bac8a358e7a77f282 +2025-08-21T21:57:45.1086139Z 2025-08-21 21:57:44,990 - INFO - DRY RUN: Would tag objects in molkart/results-a19ce7354c902be94f82f20bac8a358e7a77f282 with {'pipeline': 'molkart', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.990171', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1086552Z 2025-08-21 21:57:44,990 - WARNING - šŸ—‘ļø Tagged orphaned directory: molkart/results-a19ce7354c902be94f82f20bac8a358e7a77f282 +2025-08-21T21:57:45.1086824Z 2025-08-21 21:57:44,990 - INFO - Processing: readsimulator/results-56a7d3ff9b67caf31dbdc96c67fa894a0afc932c +2025-08-21T21:57:45.1087597Z 2025-08-21 21:57:44,990 - INFO - DRY RUN: Would tag objects in readsimulator/results-56a7d3ff9b67caf31dbdc96c67fa894a0afc932c with {'pipeline': 'readsimulator', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.990251', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1088036Z 2025-08-21 21:57:44,990 - WARNING - šŸ—‘ļø Tagged orphaned directory: readsimulator/results-56a7d3ff9b67caf31dbdc96c67fa894a0afc932c +2025-08-21T21:57:45.1088209Z 2025-08-21 21:57:44,990 - INFO - Processing: epitopeprediction/results-dev +2025-08-21T21:57:45.1088871Z 2025-08-21 21:57:44,990 - INFO - DRY RUN: Would tag objects in epitopeprediction/results-dev with {'pipeline': 'epitopeprediction', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.990331', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1089364Z 2025-08-21 21:57:44,990 - WARNING - šŸ—‘ļø Tagged orphaned directory: epitopeprediction/results-dev +2025-08-21T21:57:45.1089590Z 2025-08-21 21:57:44,990 - INFO - Processing: mag/results-d7e51ef3f0564732306cba827fb28e03af7b3bf5 +2025-08-21T21:57:45.1090282Z 2025-08-21 21:57:44,990 - INFO - DRY RUN: Would tag objects in mag/results-d7e51ef3f0564732306cba827fb28e03af7b3bf5 with {'pipeline': 'mag', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.990410', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1090675Z 2025-08-21 21:57:44,990 - WARNING - šŸ—‘ļø Tagged orphaned directory: mag/results-d7e51ef3f0564732306cba827fb28e03af7b3bf5 +2025-08-21T21:57:45.1090944Z 2025-08-21 21:57:44,990 - INFO - Processing: ampliseq/results-test-113e90bdff42a52807f5c8b3cbaafaa31c145b9d +2025-08-21T21:57:45.1091717Z 2025-08-21 21:57:44,990 - INFO - DRY RUN: Would tag objects in ampliseq/results-test-113e90bdff42a52807f5c8b3cbaafaa31c145b9d with {'pipeline': 'ampliseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.990490', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1092145Z 2025-08-21 21:57:44,990 - WARNING - šŸ—‘ļø Tagged orphaned directory: ampliseq/results-test-113e90bdff42a52807f5c8b3cbaafaa31c145b9d +2025-08-21T21:57:45.1092366Z 2025-08-21 21:57:44,990 - INFO - Processing: mag/results-b2377f1629a0345276b16281642ed432d95b2c71 +2025-08-21T21:57:45.1093300Z 2025-08-21 21:57:44,990 - INFO - DRY RUN: Would tag objects in mag/results-b2377f1629a0345276b16281642ed432d95b2c71 with {'pipeline': 'mag', 'release': '3.3.1', 'sha': 'b2377f1629a0345276b16281642ed432d95b2c71', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.990602', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1093665Z 2025-08-21 21:57:44,990 - INFO - āœ… Tagged current release: mag/results-b2377f1629a0345276b16281642ed432d95b2c71 +2025-08-21T21:57:45.1093912Z 2025-08-21 21:57:44,990 - INFO - Processing: pangenome/results-9740ffc4d0a00d6dc89e1c8f9579e628598d43a5 +2025-08-21T21:57:45.1094806Z 2025-08-21 21:57:44,990 - INFO - DRY RUN: Would tag objects in pangenome/results-9740ffc4d0a00d6dc89e1c8f9579e628598d43a5 with {'pipeline': 'pangenome', 'release': '1.1.0', 'sha': '9740ffc4d0a00d6dc89e1c8f9579e628598d43a5', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.990691', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1095315Z 2025-08-21 21:57:44,990 - INFO - āœ… Tagged current release: pangenome/results-9740ffc4d0a00d6dc89e1c8f9579e628598d43a5 +2025-08-21T21:57:45.1095701Z 2025-08-21 21:57:44,990 - INFO - Processing: funcscan/results-ed9af9dfc43d86c97ded359747a1b4feef6811ef +2025-08-21T21:57:45.1096589Z 2025-08-21 21:57:44,990 - INFO - DRY RUN: Would tag objects in funcscan/results-ed9af9dfc43d86c97ded359747a1b4feef6811ef with {'pipeline': 'funcscan', 'release': '2.1.0', 'sha': 'ed9af9dfc43d86c97ded359747a1b4feef6811ef', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.990779', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1096973Z 2025-08-21 21:57:44,990 - INFO - āœ… Tagged current release: funcscan/results-ed9af9dfc43d86c97ded359747a1b4feef6811ef +2025-08-21T21:57:45.1097203Z 2025-08-21 21:57:44,990 - INFO - Processing: isoseq/results-1d5244a14713bad7e76c4807f1179b9017d07ee9 +2025-08-21T21:57:45.1098054Z 2025-08-21 21:57:44,990 - INFO - DRY RUN: Would tag objects in isoseq/results-1d5244a14713bad7e76c4807f1179b9017d07ee9 with {'pipeline': 'isoseq', 'release': '1.1.5', 'sha': '1d5244a14713bad7e76c4807f1179b9017d07ee9', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.990865', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1098412Z 2025-08-21 21:57:44,990 - INFO - āœ… Tagged current release: isoseq/results-1d5244a14713bad7e76c4807f1179b9017d07ee9 +2025-08-21T21:57:45.1098657Z 2025-08-21 21:57:44,990 - INFO - Processing: ampliseq/results-306ad5df8f0a3b7cd033d040ddd440c09eb9a361 +2025-08-21T21:57:45.1099530Z 2025-08-21 21:57:44,990 - INFO - DRY RUN: Would tag objects in ampliseq/results-306ad5df8f0a3b7cd033d040ddd440c09eb9a361 with {'pipeline': 'ampliseq', 'release': '2.3.1', 'sha': '306ad5df8f0a3b7cd033d040ddd440c09eb9a361', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.990951', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1099898Z 2025-08-21 21:57:44,990 - INFO - āœ… Tagged current release: ampliseq/results-306ad5df8f0a3b7cd033d040ddd440c09eb9a361 +2025-08-21T21:57:45.1100073Z 2025-08-21 21:57:44,991 - INFO - Processing: proteinfamilies/results-dev +2025-08-21T21:57:45.1100725Z 2025-08-21 21:57:44,991 - INFO - DRY RUN: Would tag objects in proteinfamilies/results-dev with {'pipeline': 'proteinfamilies', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.991038', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1101018Z 2025-08-21 21:57:44,991 - WARNING - šŸ—‘ļø Tagged orphaned directory: proteinfamilies/results-dev +2025-08-21T21:57:45.1101268Z 2025-08-21 21:57:44,991 - INFO - Processing: methylong/results-2f5b75f5db599f128332f5bb11a4e1ca5d47b82e +2025-08-21T21:57:45.1102004Z 2025-08-21 21:57:44,991 - INFO - DRY RUN: Would tag objects in methylong/results-2f5b75f5db599f128332f5bb11a4e1ca5d47b82e with {'pipeline': 'methylong', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.991127', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1102415Z 2025-08-21 21:57:44,991 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylong/results-2f5b75f5db599f128332f5bb11a4e1ca5d47b82e +2025-08-21T21:57:45.1102785Z 2025-08-21 21:57:44,991 - INFO - Processing: demultiplex/results-b0a004eb2e79f6fceb9b5d79b91b563b7724ed62 +2025-08-21T21:57:45.1103699Z 2025-08-21 21:57:44,991 - INFO - DRY RUN: Would tag objects in demultiplex/results-b0a004eb2e79f6fceb9b5d79b91b563b7724ed62 with {'pipeline': 'demultiplex', 'release': '1.0.0', 'sha': 'b0a004eb2e79f6fceb9b5d79b91b563b7724ed62', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.991217', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1104084Z 2025-08-21 21:57:44,991 - INFO - āœ… Tagged current release: demultiplex/results-b0a004eb2e79f6fceb9b5d79b91b563b7724ed62 +2025-08-21T21:57:45.1104336Z 2025-08-21 21:57:44,991 - INFO - Processing: crisprseq/results-acf9155cd483aac0e41194bd2c6caf4841db1d5b +2025-08-21T21:57:45.1105174Z 2025-08-21 21:57:44,991 - INFO - DRY RUN: Would tag objects in crisprseq/results-acf9155cd483aac0e41194bd2c6caf4841db1d5b with {'pipeline': 'crisprseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.991302', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1105715Z 2025-08-21 21:57:44,991 - WARNING - šŸ—‘ļø Tagged orphaned directory: crisprseq/results-acf9155cd483aac0e41194bd2c6caf4841db1d5b +2025-08-21T21:57:45.1105952Z 2025-08-21 21:57:44,991 - INFO - Processing: smrnaseq/results-27514c40c08d1eab8249521096f4f2f7be875104 +2025-08-21T21:57:45.1106816Z 2025-08-21 21:57:44,991 - INFO - DRY RUN: Would tag objects in smrnaseq/results-27514c40c08d1eab8249521096f4f2f7be875104 with {'pipeline': 'smrnaseq', 'release': '2.1.0', 'sha': '27514c40c08d1eab8249521096f4f2f7be875104', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.991389', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1107179Z 2025-08-21 21:57:44,991 - INFO - āœ… Tagged current release: smrnaseq/results-27514c40c08d1eab8249521096f4f2f7be875104 +2025-08-21T21:57:45.1107472Z 2025-08-21 21:57:44,991 - INFO - Processing: pathogensurveillance/results-a83b789a7b61e96bee4d5e72a2681876c7289883 +2025-08-21T21:57:45.1108444Z 2025-08-21 21:57:44,991 - INFO - DRY RUN: Would tag objects in pathogensurveillance/results-a83b789a7b61e96bee4d5e72a2681876c7289883 with {'pipeline': 'pathogensurveillance', 'release': '1.0.0', 'sha': 'a83b789a7b61e96bee4d5e72a2681876c7289883', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.991473', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1108876Z 2025-08-21 21:57:44,991 - INFO - āœ… Tagged current release: pathogensurveillance/results-a83b789a7b61e96bee4d5e72a2681876c7289883 +2025-08-21T21:57:45.1109109Z 2025-08-21 21:57:44,991 - INFO - Processing: rnaseq/results-964425e3fd8bfc3dc7bce43279a98d17a874d3f7 +2025-08-21T21:57:45.1109966Z 2025-08-21 21:57:44,991 - INFO - DRY RUN: Would tag objects in rnaseq/results-964425e3fd8bfc3dc7bce43279a98d17a874d3f7 with {'pipeline': 'rnaseq', 'release': '3.4', 'sha': '964425e3fd8bfc3dc7bce43279a98d17a874d3f7', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.991579', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1110332Z 2025-08-21 21:57:44,991 - INFO - āœ… Tagged current release: rnaseq/results-964425e3fd8bfc3dc7bce43279a98d17a874d3f7 +2025-08-21T21:57:45.1110581Z 2025-08-21 21:57:44,991 - INFO - Processing: funcscan/results-274042b24d5267f85fb375aef4245c73035e8c63 +2025-08-21T21:57:45.1111436Z 2025-08-21 21:57:44,991 - INFO - DRY RUN: Would tag objects in funcscan/results-274042b24d5267f85fb375aef4245c73035e8c63 with {'pipeline': 'funcscan', 'release': '1.1.4', 'sha': '274042b24d5267f85fb375aef4245c73035e8c63', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.991666', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1111797Z 2025-08-21 21:57:44,991 - INFO - āœ… Tagged current release: funcscan/results-274042b24d5267f85fb375aef4245c73035e8c63 +2025-08-21T21:57:45.1111972Z 2025-08-21 21:57:44,991 - INFO - Processing: methylseq/results-dev-bwameth-ARM +2025-08-21T21:57:45.1112763Z 2025-08-21 21:57:44,991 - INFO - DRY RUN: Would tag objects in methylseq/results-dev-bwameth-ARM with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.991752', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1113082Z 2025-08-21 21:57:44,991 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-dev-bwameth-ARM +2025-08-21T21:57:45.1113313Z 2025-08-21 21:57:44,991 - INFO - Processing: rnaseq/results-646723c70f04ee6d66391758b02822d4f0fe2966 +2025-08-21T21:57:45.1114149Z 2025-08-21 21:57:44,991 - INFO - DRY RUN: Would tag objects in rnaseq/results-646723c70f04ee6d66391758b02822d4f0fe2966 with {'pipeline': 'rnaseq', 'release': '3.5', 'sha': '646723c70f04ee6d66391758b02822d4f0fe2966', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.991841', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1114500Z 2025-08-21 21:57:44,991 - INFO - āœ… Tagged current release: rnaseq/results-646723c70f04ee6d66391758b02822d4f0fe2966 +2025-08-21T21:57:45.1114743Z 2025-08-21 21:57:44,991 - INFO - Processing: rnafusion/results-bbdcb3bf53421a3875f9bd52b4c961f28deda157 +2025-08-21T21:57:45.1115736Z 2025-08-21 21:57:44,991 - INFO - DRY RUN: Would tag objects in rnafusion/results-bbdcb3bf53421a3875f9bd52b4c961f28deda157 with {'pipeline': 'rnafusion', 'release': '2.3.1', 'sha': 'bbdcb3bf53421a3875f9bd52b4c961f28deda157', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.991926', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1116280Z 2025-08-21 21:57:44,991 - INFO - āœ… Tagged current release: rnafusion/results-bbdcb3bf53421a3875f9bd52b4c961f28deda157 +2025-08-21T21:57:45.1116535Z 2025-08-21 21:57:44,991 - INFO - Processing: raredisease/results-fa61a657257a14a6433e3d751c577ab4c9d2eda4 +2025-08-21T21:57:45.1117424Z 2025-08-21 21:57:44,992 - INFO - DRY RUN: Would tag objects in raredisease/results-fa61a657257a14a6433e3d751c577ab4c9d2eda4 with {'pipeline': 'raredisease', 'release': '2.2.0', 'sha': 'fa61a657257a14a6433e3d751c577ab4c9d2eda4', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.992013', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1117812Z 2025-08-21 21:57:44,992 - INFO - āœ… Tagged current release: raredisease/results-fa61a657257a14a6433e3d751c577ab4c9d2eda4 +2025-08-21T21:57:45.1118080Z 2025-08-21 21:57:44,992 - INFO - Processing: genomeassembler/results-656bc9065046372199400be07e0c2b29a3c99f9d +2025-08-21T21:57:45.1118864Z 2025-08-21 21:57:44,992 - INFO - DRY RUN: Would tag objects in genomeassembler/results-656bc9065046372199400be07e0c2b29a3c99f9d with {'pipeline': 'genomeassembler', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.992101', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1119294Z 2025-08-21 21:57:44,992 - WARNING - šŸ—‘ļø Tagged orphaned directory: genomeassembler/results-656bc9065046372199400be07e0c2b29a3c99f9d +2025-08-21T21:57:45.1119593Z 2025-08-21 21:57:44,992 - INFO - Processing: drugresponseeval/results-test-d8695a4701ba2a4f4c575aece3bb292c66317502 +2025-08-21T21:57:45.1120409Z 2025-08-21 21:57:44,992 - INFO - DRY RUN: Would tag objects in drugresponseeval/results-test-d8695a4701ba2a4f4c575aece3bb292c66317502 with {'pipeline': 'drugresponseeval', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.992193', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1120882Z 2025-08-21 21:57:44,992 - WARNING - šŸ—‘ļø Tagged orphaned directory: drugresponseeval/results-test-d8695a4701ba2a4f4c575aece3bb292c66317502 +2025-08-21T21:57:45.1121122Z 2025-08-21 21:57:44,992 - INFO - Processing: mhcquant/results-1b3069246d10ec305ec2f478f490ec05aa734ce5 +2025-08-21T21:57:45.1121983Z 2025-08-21 21:57:44,992 - INFO - DRY RUN: Would tag objects in mhcquant/results-1b3069246d10ec305ec2f478f490ec05aa734ce5 with {'pipeline': 'mhcquant', 'release': '2.6.0', 'sha': '1b3069246d10ec305ec2f478f490ec05aa734ce5', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.992284', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1122339Z 2025-08-21 21:57:44,992 - INFO - āœ… Tagged current release: mhcquant/results-1b3069246d10ec305ec2f478f490ec05aa734ce5 +2025-08-21T21:57:45.1122582Z 2025-08-21 21:57:44,992 - INFO - Processing: methylong/results-338f6c4fb9847a78e743085ba916372bff7c81c7 +2025-08-21T21:57:45.1123435Z 2025-08-21 21:57:44,992 - INFO - DRY RUN: Would tag objects in methylong/results-338f6c4fb9847a78e743085ba916372bff7c81c7 with {'pipeline': 'methylong', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.992370', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1123849Z 2025-08-21 21:57:44,992 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylong/results-338f6c4fb9847a78e743085ba916372bff7c81c7 +2025-08-21T21:57:45.1124073Z 2025-08-21 21:57:44,992 - INFO - Processing: mag/results-babacaa771d53627d6342a1094396a605792dbd4 +2025-08-21T21:57:45.1124763Z 2025-08-21 21:57:44,992 - INFO - DRY RUN: Would tag objects in mag/results-babacaa771d53627d6342a1094396a605792dbd4 with {'pipeline': 'mag', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.992458', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1125301Z 2025-08-21 21:57:44,992 - WARNING - šŸ—‘ļø Tagged orphaned directory: mag/results-babacaa771d53627d6342a1094396a605792dbd4 +2025-08-21T21:57:45.1125704Z 2025-08-21 21:57:44,992 - INFO - Processing: denovotranscript/results-e693f8c1d559093f077a4dfd1fef061705b3c393 +2025-08-21T21:57:45.1126495Z 2025-08-21 21:57:44,992 - INFO - DRY RUN: Would tag objects in denovotranscript/results-e693f8c1d559093f077a4dfd1fef061705b3c393 with {'pipeline': 'denovotranscript', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.992566', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1126941Z 2025-08-21 21:57:44,992 - WARNING - šŸ—‘ļø Tagged orphaned directory: denovotranscript/results-e693f8c1d559093f077a4dfd1fef061705b3c393 +2025-08-21T21:57:45.1127171Z 2025-08-21 21:57:44,992 - INFO - Processing: fetchngs/results-b234c7123c9816e248a639a2922556c86f82fd99 +2025-08-21T21:57:45.1127898Z 2025-08-21 21:57:44,992 - INFO - DRY RUN: Would tag objects in fetchngs/results-b234c7123c9816e248a639a2922556c86f82fd99 with {'pipeline': 'fetchngs', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.992656', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1128294Z 2025-08-21 21:57:44,992 - WARNING - šŸ—‘ļø Tagged orphaned directory: fetchngs/results-b234c7123c9816e248a639a2922556c86f82fd99 +2025-08-21T21:57:45.1128533Z 2025-08-21 21:57:44,992 - INFO - Processing: metapep/results-84feafc9476978c2a1b84849871a553cffd9762a +2025-08-21T21:57:45.1129393Z 2025-08-21 21:57:44,992 - INFO - DRY RUN: Would tag objects in metapep/results-84feafc9476978c2a1b84849871a553cffd9762a with {'pipeline': 'metapep', 'release': '1.0.0', 'sha': '84feafc9476978c2a1b84849871a553cffd9762a', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.992748', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1129756Z 2025-08-21 21:57:44,992 - INFO - āœ… Tagged current release: metapep/results-84feafc9476978c2a1b84849871a553cffd9762a +2025-08-21T21:57:45.1129998Z 2025-08-21 21:57:44,992 - INFO - Processing: methylseq/results-44b80aa2bf6e8f11e23d506227bbd7293c108cb1 +2025-08-21T21:57:45.1130879Z 2025-08-21 21:57:44,992 - INFO - DRY RUN: Would tag objects in methylseq/results-44b80aa2bf6e8f11e23d506227bbd7293c108cb1 with {'pipeline': 'methylseq', 'release': '2.1.0', 'sha': '44b80aa2bf6e8f11e23d506227bbd7293c108cb1', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.992834', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1131255Z 2025-08-21 21:57:44,992 - INFO - āœ… Tagged current release: methylseq/results-44b80aa2bf6e8f11e23d506227bbd7293c108cb1 +2025-08-21T21:57:45.1131500Z 2025-08-21 21:57:44,992 - INFO - Processing: methylseq/results-f3e4b1bf58f5da9a2788426bfb320d8ed81ead15 +2025-08-21T21:57:45.1132376Z 2025-08-21 21:57:44,992 - INFO - DRY RUN: Would tag objects in methylseq/results-f3e4b1bf58f5da9a2788426bfb320d8ed81ead15 with {'pipeline': 'methylseq', 'release': '4.0.0', 'sha': 'f3e4b1bf58f5da9a2788426bfb320d8ed81ead15', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.992921', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1132858Z 2025-08-21 21:57:44,992 - INFO - āœ… Tagged current release: methylseq/results-f3e4b1bf58f5da9a2788426bfb320d8ed81ead15 +2025-08-21T21:57:45.1133106Z 2025-08-21 21:57:44,992 - INFO - Processing: funcscan/results-ba0dfcdc525b31b4074e8979049ed59ea969aff6 +2025-08-21T21:57:45.1133835Z 2025-08-21 21:57:44,993 - INFO - DRY RUN: Would tag objects in funcscan/results-ba0dfcdc525b31b4074e8979049ed59ea969aff6 with {'pipeline': 'funcscan', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.993007', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1134250Z 2025-08-21 21:57:44,993 - WARNING - šŸ—‘ļø Tagged orphaned directory: funcscan/results-ba0dfcdc525b31b4074e8979049ed59ea969aff6 +2025-08-21T21:57:45.1134431Z 2025-08-21 21:57:44,993 - INFO - Processing: methylseq/results-dev-bismark-CPU +2025-08-21T21:57:45.1135166Z 2025-08-21 21:57:44,993 - INFO - DRY RUN: Would tag objects in methylseq/results-dev-bismark-CPU with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.993097', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1135598Z 2025-08-21 21:57:44,993 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-dev-bismark-CPU +2025-08-21T21:57:45.1135834Z 2025-08-21 21:57:44,993 - INFO - Processing: sarek/results-c87f4eb694a7183e4f99c70fca0f1d4e91750b33 +2025-08-21T21:57:45.1136683Z 2025-08-21 21:57:44,993 - INFO - DRY RUN: Would tag objects in sarek/results-c87f4eb694a7183e4f99c70fca0f1d4e91750b33 with {'pipeline': 'sarek', 'release': '3.1.2', 'sha': 'c87f4eb694a7183e4f99c70fca0f1d4e91750b33', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.993186', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1137037Z 2025-08-21 21:57:44,993 - INFO - āœ… Tagged current release: sarek/results-c87f4eb694a7183e4f99c70fca0f1d4e91750b33 +2025-08-21T21:57:45.1137283Z 2025-08-21 21:57:44,993 - INFO - Processing: viralrecon/results-2ebae61442598302c64916bd5127cf23c8ab5611 +2025-08-21T21:57:45.1138166Z 2025-08-21 21:57:44,993 - INFO - DRY RUN: Would tag objects in viralrecon/results-2ebae61442598302c64916bd5127cf23c8ab5611 with {'pipeline': 'viralrecon', 'release': '2.2', 'sha': '2ebae61442598302c64916bd5127cf23c8ab5611', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.993275', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1138547Z 2025-08-21 21:57:44,993 - INFO - āœ… Tagged current release: viralrecon/results-2ebae61442598302c64916bd5127cf23c8ab5611 +2025-08-21T21:57:45.1138784Z 2025-08-21 21:57:44,993 - INFO - Processing: funcscan/results-34063c49cb46f429241b7d3744ab839fa3ccddf6 +2025-08-21T21:57:45.1139649Z 2025-08-21 21:57:44,993 - INFO - DRY RUN: Would tag objects in funcscan/results-34063c49cb46f429241b7d3744ab839fa3ccddf6 with {'pipeline': 'funcscan', 'release': '1.1.1', 'sha': '34063c49cb46f429241b7d3744ab839fa3ccddf6', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.993360', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1140011Z 2025-08-21 21:57:44,993 - INFO - āœ… Tagged current release: funcscan/results-34063c49cb46f429241b7d3744ab839fa3ccddf6 +2025-08-21T21:57:45.1140293Z 2025-08-21 21:57:44,993 - INFO - Processing: proteinfamilies/results-64e43caa8f8e579fb4d303d9122f545bda4ed0d9 +2025-08-21T21:57:45.1141078Z 2025-08-21 21:57:44,993 - INFO - DRY RUN: Would tag objects in proteinfamilies/results-64e43caa8f8e579fb4d303d9122f545bda4ed0d9 with {'pipeline': 'proteinfamilies', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.993446', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1141517Z 2025-08-21 21:57:44,993 - WARNING - šŸ—‘ļø Tagged orphaned directory: proteinfamilies/results-64e43caa8f8e579fb4d303d9122f545bda4ed0d9 +2025-08-21T21:57:45.1141755Z 2025-08-21 21:57:44,993 - INFO - Processing: rangeland/results-573951aa6033849320a6eb14545daa8250eaf502 +2025-08-21T21:57:45.1142594Z 2025-08-21 21:57:44,993 - INFO - DRY RUN: Would tag objects in rangeland/results-573951aa6033849320a6eb14545daa8250eaf502 with {'pipeline': 'rangeland', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.993554', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1143003Z 2025-08-21 21:57:44,993 - WARNING - šŸ—‘ļø Tagged orphaned directory: rangeland/results-573951aa6033849320a6eb14545daa8250eaf502 +2025-08-21T21:57:45.1143154Z 2025-08-21 21:57:44,993 - INFO - Processing: mhcquant/results-dev +2025-08-21T21:57:45.1143735Z 2025-08-21 21:57:44,993 - INFO - DRY RUN: Would tag objects in mhcquant/results-dev with {'pipeline': 'mhcquant', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.993645', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1144030Z 2025-08-21 21:57:44,993 - WARNING - šŸ—‘ļø Tagged orphaned directory: mhcquant/results-dev +2025-08-21T21:57:45.1144254Z 2025-08-21 21:57:44,993 - INFO - Processing: mag/results-bb74c4695d7767c7094fc5411bf5c49b1caf137d +2025-08-21T21:57:45.1145172Z 2025-08-21 21:57:44,993 - INFO - DRY RUN: Would tag objects in mag/results-bb74c4695d7767c7094fc5411bf5c49b1caf137d with {'pipeline': 'mag', 'release': '3.0.2', 'sha': 'bb74c4695d7767c7094fc5411bf5c49b1caf137d', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.993735', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1145648Z 2025-08-21 21:57:44,993 - INFO - āœ… Tagged current release: mag/results-bb74c4695d7767c7094fc5411bf5c49b1caf137d +2025-08-21T21:57:45.1145892Z 2025-08-21 21:57:44,993 - INFO - Processing: crisprseq/results-76e9e1058a3018efcaabec05908a381fdd378658 +2025-08-21T21:57:45.1146647Z 2025-08-21 21:57:44,993 - INFO - DRY RUN: Would tag objects in crisprseq/results-76e9e1058a3018efcaabec05908a381fdd378658 with {'pipeline': 'crisprseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.993825', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1147056Z 2025-08-21 21:57:44,993 - WARNING - šŸ—‘ļø Tagged orphaned directory: crisprseq/results-76e9e1058a3018efcaabec05908a381fdd378658 +2025-08-21T21:57:45.1147293Z 2025-08-21 21:57:44,993 - INFO - Processing: airrflow/results-333c8b521d62f6c61c658823d8831df93bc5b532 +2025-08-21T21:57:45.1148169Z 2025-08-21 21:57:44,993 - INFO - DRY RUN: Would tag objects in airrflow/results-333c8b521d62f6c61c658823d8831df93bc5b532 with {'pipeline': 'airrflow', 'release': '3.2.0', 'sha': '333c8b521d62f6c61c658823d8831df93bc5b532', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.993916', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1148535Z 2025-08-21 21:57:44,993 - INFO - āœ… Tagged current release: airrflow/results-333c8b521d62f6c61c658823d8831df93bc5b532 +2025-08-21T21:57:45.1148765Z 2025-08-21 21:57:44,993 - INFO - Processing: hicar/results-429087d2b13e59c3edd2e71b8005c1adc5bbb7bb +2025-08-21T21:57:45.1149613Z 2025-08-21 21:57:44,994 - INFO - DRY RUN: Would tag objects in hicar/results-429087d2b13e59c3edd2e71b8005c1adc5bbb7bb with {'pipeline': 'hicar', 'release': '1.0.0', 'sha': '429087d2b13e59c3edd2e71b8005c1adc5bbb7bb', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.994003', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1149972Z 2025-08-21 21:57:44,994 - INFO - āœ… Tagged current release: hicar/results-429087d2b13e59c3edd2e71b8005c1adc5bbb7bb +2025-08-21T21:57:45.1150202Z 2025-08-21 21:57:44,994 - INFO - Processing: mag/results-e2244f53af8fcb3372bca1a6c9c8428ed30321c4 +2025-08-21T21:57:45.1150893Z 2025-08-21 21:57:44,994 - INFO - DRY RUN: Would tag objects in mag/results-e2244f53af8fcb3372bca1a6c9c8428ed30321c4 with {'pipeline': 'mag', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.994088', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1151273Z 2025-08-21 21:57:44,994 - WARNING - šŸ—‘ļø Tagged orphaned directory: mag/results-e2244f53af8fcb3372bca1a6c9c8428ed30321c4 +2025-08-21T21:57:45.1151568Z 2025-08-21 21:57:44,994 - INFO - Processing: differentialabundance/results-17aec4fd0ab2c84b1d384932187797aa7ea1e962 +2025-08-21T21:57:45.1152686Z 2025-08-21 21:57:44,994 - INFO - DRY RUN: Would tag objects in differentialabundance/results-17aec4fd0ab2c84b1d384932187797aa7ea1e962 with {'pipeline': 'differentialabundance', 'release': '1.0.0', 'sha': '17aec4fd0ab2c84b1d384932187797aa7ea1e962', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.994178', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1153135Z 2025-08-21 21:57:44,994 - INFO - āœ… Tagged current release: differentialabundance/results-17aec4fd0ab2c84b1d384932187797aa7ea1e962 +2025-08-21T21:57:45.1153361Z 2025-08-21 21:57:44,994 - INFO - Processing: mag/results-8196d2c3cffdb41d4e512ddccc782d9daf464306 +2025-08-21T21:57:45.1154051Z 2025-08-21 21:57:44,994 - INFO - DRY RUN: Would tag objects in mag/results-8196d2c3cffdb41d4e512ddccc782d9daf464306 with {'pipeline': 'mag', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.994265', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1154432Z 2025-08-21 21:57:44,994 - WARNING - šŸ—‘ļø Tagged orphaned directory: mag/results-8196d2c3cffdb41d4e512ddccc782d9daf464306 +2025-08-21T21:57:45.1154686Z 2025-08-21 21:57:44,994 - INFO - Processing: methylong/results-edcebd49c0bbfe17128cd1b6e2269ff1c3fd7c0d +2025-08-21T21:57:45.1155618Z 2025-08-21 21:57:44,994 - INFO - DRY RUN: Would tag objects in methylong/results-edcebd49c0bbfe17128cd1b6e2269ff1c3fd7c0d with {'pipeline': 'methylong', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.994356', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1156043Z 2025-08-21 21:57:44,994 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylong/results-edcebd49c0bbfe17128cd1b6e2269ff1c3fd7c0d +2025-08-21T21:57:45.1156283Z 2025-08-21 21:57:44,994 - INFO - Processing: smrnaseq/results-5901bea438cb719c186f883bb6e6a11f1de70a5b +2025-08-21T21:57:45.1157157Z 2025-08-21 21:57:44,994 - INFO - DRY RUN: Would tag objects in smrnaseq/results-5901bea438cb719c186f883bb6e6a11f1de70a5b with {'pipeline': 'smrnaseq', 'release': '2.3.1', 'sha': '5901bea438cb719c186f883bb6e6a11f1de70a5b', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.994444', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1157527Z 2025-08-21 21:57:44,994 - INFO - āœ… Tagged current release: smrnaseq/results-5901bea438cb719c186f883bb6e6a11f1de70a5b +2025-08-21T21:57:45.1157777Z 2025-08-21 21:57:44,994 - INFO - Processing: methylong/results-a186af55c938ae87849d4e02e29f0b4a42ca0134 +2025-08-21T21:57:45.1158506Z 2025-08-21 21:57:44,994 - INFO - DRY RUN: Would tag objects in methylong/results-a186af55c938ae87849d4e02e29f0b4a42ca0134 with {'pipeline': 'methylong', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.994543', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1158909Z 2025-08-21 21:57:44,994 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylong/results-a186af55c938ae87849d4e02e29f0b4a42ca0134 +2025-08-21T21:57:45.1159153Z 2025-08-21 21:57:44,994 - INFO - Processing: raredisease/results-88395468484f77913aa5601d9542465fd78da41d +2025-08-21T21:57:45.1159905Z 2025-08-21 21:57:44,994 - INFO - DRY RUN: Would tag objects in raredisease/results-88395468484f77913aa5601d9542465fd78da41d with {'pipeline': 'raredisease', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.994634', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1160320Z 2025-08-21 21:57:44,994 - WARNING - šŸ—‘ļø Tagged orphaned directory: raredisease/results-88395468484f77913aa5601d9542465fd78da41d +2025-08-21T21:57:45.1160549Z 2025-08-21 21:57:44,994 - INFO - Processing: mag/results-4717d3d466402c9ceefecae2ceb549c7cbe27e62 +2025-08-21T21:57:45.1161379Z 2025-08-21 21:57:44,994 - INFO - DRY RUN: Would tag objects in mag/results-4717d3d466402c9ceefecae2ceb549c7cbe27e62 with {'pipeline': 'mag', 'release': '3.4.0', 'sha': '4717d3d466402c9ceefecae2ceb549c7cbe27e62', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.994729', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1161733Z 2025-08-21 21:57:44,994 - INFO - āœ… Tagged current release: mag/results-4717d3d466402c9ceefecae2ceb549c7cbe27e62 +2025-08-21T21:57:45.1161961Z 2025-08-21 21:57:44,994 - INFO - Processing: eager/results-70e3d276d3a39859b8f067518added35ef616af7 +2025-08-21T21:57:45.1162930Z 2025-08-21 21:57:44,994 - INFO - DRY RUN: Would tag objects in eager/results-70e3d276d3a39859b8f067518added35ef616af7 with {'pipeline': 'eager', 'release': '2.3.5', 'sha': '70e3d276d3a39859b8f067518added35ef616af7', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.994815', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1163288Z 2025-08-21 21:57:44,994 - INFO - āœ… Tagged current release: eager/results-70e3d276d3a39859b8f067518added35ef616af7 +2025-08-21T21:57:45.1163541Z 2025-08-21 21:57:44,994 - INFO - Processing: bamtofastq/results-ceae4d6d08356d22c3b8089292167d86d1ff7d15 +2025-08-21T21:57:45.1164421Z 2025-08-21 21:57:44,994 - INFO - DRY RUN: Would tag objects in bamtofastq/results-ceae4d6d08356d22c3b8089292167d86d1ff7d15 with {'pipeline': 'bamtofastq', 'release': '2.0.0', 'sha': 'ceae4d6d08356d22c3b8089292167d86d1ff7d15', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.994901', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1164804Z 2025-08-21 21:57:44,994 - INFO - āœ… Tagged current release: bamtofastq/results-ceae4d6d08356d22c3b8089292167d86d1ff7d15 +2025-08-21T21:57:45.1165249Z 2025-08-21 21:57:44,994 - INFO - Processing: funcscan/results-2a5c32a4dd72ed18b53a797af7bd8e11694af9e1 +2025-08-21T21:57:45.1166123Z 2025-08-21 21:57:44,994 - INFO - DRY RUN: Would tag objects in funcscan/results-2a5c32a4dd72ed18b53a797af7bd8e11694af9e1 with {'pipeline': 'funcscan', 'release': '1.1.6', 'sha': '2a5c32a4dd72ed18b53a797af7bd8e11694af9e1', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.994986', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1166493Z 2025-08-21 21:57:44,995 - INFO - āœ… Tagged current release: funcscan/results-2a5c32a4dd72ed18b53a797af7bd8e11694af9e1 +2025-08-21T21:57:45.1166725Z 2025-08-21 21:57:44,995 - INFO - Processing: isoseq/results-322f3a2f4b22855c03f59d29802fe35c5ddaafbc +2025-08-21T21:57:45.1167579Z 2025-08-21 21:57:44,995 - INFO - DRY RUN: Would tag objects in isoseq/results-322f3a2f4b22855c03f59d29802fe35c5ddaafbc with {'pipeline': 'isoseq', 'release': '1.1.1', 'sha': '322f3a2f4b22855c03f59d29802fe35c5ddaafbc', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.995074', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1167942Z 2025-08-21 21:57:44,995 - INFO - āœ… Tagged current release: isoseq/results-322f3a2f4b22855c03f59d29802fe35c5ddaafbc +2025-08-21T21:57:45.1168210Z 2025-08-21 21:57:44,995 - INFO - Processing: pairgenomealign/results-65e829836a2510ac3fcc5e5a75e9f91ff7604512 +2025-08-21T21:57:45.1169138Z 2025-08-21 21:57:44,995 - INFO - DRY RUN: Would tag objects in pairgenomealign/results-65e829836a2510ac3fcc5e5a75e9f91ff7604512 with {'pipeline': 'pairgenomealign', 'release': '1.1.0', 'sha': '65e829836a2510ac3fcc5e5a75e9f91ff7604512', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.995162', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1169533Z 2025-08-21 21:57:44,995 - INFO - āœ… Tagged current release: pairgenomealign/results-65e829836a2510ac3fcc5e5a75e9f91ff7604512 +2025-08-21T21:57:45.1169796Z 2025-08-21 21:57:44,995 - INFO - Processing: taxprofiler/results-c6dfb84c216f8d26b72d7651b620afe3c140b343 +2025-08-21T21:57:45.1170560Z 2025-08-21 21:57:44,995 - INFO - DRY RUN: Would tag objects in taxprofiler/results-c6dfb84c216f8d26b72d7651b620afe3c140b343 with {'pipeline': 'taxprofiler', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.995246', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1170982Z 2025-08-21 21:57:44,995 - WARNING - šŸ—‘ļø Tagged orphaned directory: taxprofiler/results-c6dfb84c216f8d26b72d7651b620afe3c140b343 +2025-08-21T21:57:45.1171228Z 2025-08-21 21:57:44,995 - INFO - Processing: rnafusion/results-98f02be34cf1f6787af9cfc4fb09e93dff74dad4 +2025-08-21T21:57:45.1172227Z 2025-08-21 21:57:44,995 - INFO - DRY RUN: Would tag objects in rnafusion/results-98f02be34cf1f6787af9cfc4fb09e93dff74dad4 with {'pipeline': 'rnafusion', 'release': '3.0.1', 'sha': '98f02be34cf1f6787af9cfc4fb09e93dff74dad4', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.995336', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1172614Z 2025-08-21 21:57:44,995 - INFO - āœ… Tagged current release: rnafusion/results-98f02be34cf1f6787af9cfc4fb09e93dff74dad4 +2025-08-21T21:57:45.1172858Z 2025-08-21 21:57:44,995 - INFO - Processing: mhcquant/results-3437540db07a1b51e6b88bcb41a5c8c6844bf283 +2025-08-21T21:57:45.1173720Z 2025-08-21 21:57:44,995 - INFO - DRY RUN: Would tag objects in mhcquant/results-3437540db07a1b51e6b88bcb41a5c8c6844bf283 with {'pipeline': 'mhcquant', 'release': '1.6.0', 'sha': '3437540db07a1b51e6b88bcb41a5c8c6844bf283', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.995424', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1174085Z 2025-08-21 21:57:44,995 - INFO - āœ… Tagged current release: mhcquant/results-3437540db07a1b51e6b88bcb41a5c8c6844bf283 +2025-08-21T21:57:45.1174331Z 2025-08-21 21:57:44,995 - INFO - Processing: raredisease/results-c371602095ff83064f51747fe90dfc405ca7a864 +2025-08-21T21:57:45.1175316Z 2025-08-21 21:57:44,995 - INFO - DRY RUN: Would tag objects in raredisease/results-c371602095ff83064f51747fe90dfc405ca7a864 with {'pipeline': 'raredisease', 'release': '1.1.1', 'sha': 'c371602095ff83064f51747fe90dfc405ca7a864', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.995525', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1175810Z 2025-08-21 21:57:44,995 - INFO - āœ… Tagged current release: raredisease/results-c371602095ff83064f51747fe90dfc405ca7a864 +2025-08-21T21:57:45.1175971Z 2025-08-21 21:57:44,995 - INFO - Processing: raredisease/results-dev +2025-08-21T21:57:45.1176579Z 2025-08-21 21:57:44,995 - INFO - DRY RUN: Would tag objects in raredisease/results-dev with {'pipeline': 'raredisease', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.995616', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1176859Z 2025-08-21 21:57:44,995 - WARNING - šŸ—‘ļø Tagged orphaned directory: raredisease/results-dev +2025-08-21T21:57:45.1177107Z 2025-08-21 21:57:44,995 - INFO - Processing: airrflow/results-2f492b0e7e668135ca65c0054add6fe0d9db8b27 +2025-08-21T21:57:45.1177986Z 2025-08-21 21:57:44,995 - INFO - DRY RUN: Would tag objects in airrflow/results-2f492b0e7e668135ca65c0054add6fe0d9db8b27 with {'pipeline': 'airrflow', 'release': '4.0', 'sha': '2f492b0e7e668135ca65c0054add6fe0d9db8b27', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.995705', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1178349Z 2025-08-21 21:57:44,995 - INFO - āœ… Tagged current release: airrflow/results-2f492b0e7e668135ca65c0054add6fe0d9db8b27 +2025-08-21T21:57:45.1178594Z 2025-08-21 21:57:44,995 - INFO - Processing: chipseq/results-048fd6854fcc85b355c61dfc2e21da0bcc6399ea +2025-08-21T21:57:45.1179452Z 2025-08-21 21:57:44,995 - INFO - DRY RUN: Would tag objects in chipseq/results-048fd6854fcc85b355c61dfc2e21da0bcc6399ea with {'pipeline': 'chipseq', 'release': '1.2.0', 'sha': '048fd6854fcc85b355c61dfc2e21da0bcc6399ea', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.995791', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1179830Z 2025-08-21 21:57:44,995 - INFO - āœ… Tagged current release: chipseq/results-048fd6854fcc85b355c61dfc2e21da0bcc6399ea +2025-08-21T21:57:45.1180005Z 2025-08-21 21:57:44,995 - INFO - Processing: multiplesequencealign/results-dev +2025-08-21T21:57:45.1180708Z 2025-08-21 21:57:44,995 - INFO - DRY RUN: Would tag objects in multiplesequencealign/results-dev with {'pipeline': 'multiplesequencealign', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.995879', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1181011Z 2025-08-21 21:57:44,995 - WARNING - šŸ—‘ļø Tagged orphaned directory: multiplesequencealign/results-dev +2025-08-21T21:57:45.1181238Z 2025-08-21 21:57:44,995 - INFO - Processing: demo/results-04060b4644d68649180db796e89a3db2a466a8d8 +2025-08-21T21:57:45.1182174Z 2025-08-21 21:57:44,995 - INFO - DRY RUN: Would tag objects in demo/results-04060b4644d68649180db796e89a3db2a466a8d8 with {'pipeline': 'demo', 'release': '1.0.1', 'sha': '04060b4644d68649180db796e89a3db2a466a8d8', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.995969', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1182536Z 2025-08-21 21:57:44,996 - INFO - āœ… Tagged current release: demo/results-04060b4644d68649180db796e89a3db2a466a8d8 +2025-08-21T21:57:45.1182694Z 2025-08-21 21:57:44,996 - INFO - Processing: createpanelrefs/results-dev +2025-08-21T21:57:45.1183333Z 2025-08-21 21:57:44,996 - INFO - DRY RUN: Would tag objects in createpanelrefs/results-dev with {'pipeline': 'createpanelrefs', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.996056', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1183621Z 2025-08-21 21:57:44,996 - WARNING - šŸ—‘ļø Tagged orphaned directory: createpanelrefs/results-dev +2025-08-21T21:57:45.1183770Z 2025-08-21 21:57:44,996 - INFO - Processing: methylseq/results-dev +2025-08-21T21:57:45.1184359Z 2025-08-21 21:57:44,996 - INFO - DRY RUN: Would tag objects in methylseq/results-dev with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.996145', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1184707Z 2025-08-21 21:57:44,996 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-dev +2025-08-21T21:57:45.1185051Z 2025-08-21 21:57:44,996 - INFO - Processing: rnasplice/results-907c293ad60edee7c9d37702ca93efce15801837 +2025-08-21T21:57:45.1185939Z 2025-08-21 21:57:44,996 - INFO - DRY RUN: Would tag objects in rnasplice/results-907c293ad60edee7c9d37702ca93efce15801837 with {'pipeline': 'rnasplice', 'release': '1.0.1', 'sha': '907c293ad60edee7c9d37702ca93efce15801837', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.996231', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1186311Z 2025-08-21 21:57:44,996 - INFO - āœ… Tagged current release: rnasplice/results-907c293ad60edee7c9d37702ca93efce15801837 +2025-08-21T21:57:45.1186567Z 2025-08-21 21:57:44,996 - INFO - Processing: bamtofastq/results-b6bcae3f987d7d7cd321711940ad90f9b360597f +2025-08-21T21:57:45.1187331Z 2025-08-21 21:57:44,996 - INFO - DRY RUN: Would tag objects in bamtofastq/results-b6bcae3f987d7d7cd321711940ad90f9b360597f with {'pipeline': 'bamtofastq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.996316', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1187750Z 2025-08-21 21:57:44,996 - WARNING - šŸ—‘ļø Tagged orphaned directory: bamtofastq/results-b6bcae3f987d7d7cd321711940ad90f9b360597f +2025-08-21T21:57:45.1187994Z 2025-08-21 21:57:44,996 - INFO - Processing: rnafusion/results-6ffe30435b611339999145e4b71ac59158cf1182 +2025-08-21T21:57:45.1188864Z 2025-08-21 21:57:44,996 - INFO - DRY RUN: Would tag objects in rnafusion/results-6ffe30435b611339999145e4b71ac59158cf1182 with {'pipeline': 'rnafusion', 'release': '2.1.0', 'sha': '6ffe30435b611339999145e4b71ac59158cf1182', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.996403', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1189229Z 2025-08-21 21:57:44,996 - INFO - āœ… Tagged current release: rnafusion/results-6ffe30435b611339999145e4b71ac59158cf1182 +2025-08-21T21:57:45.1189475Z 2025-08-21 21:57:44,996 - INFO - Processing: scrnaseq/results-27f37ab827b3f72e8e305256a9c59a37bb85ef83 +2025-08-21T21:57:45.1190337Z 2025-08-21 21:57:44,996 - INFO - DRY RUN: Would tag objects in scrnaseq/results-27f37ab827b3f72e8e305256a9c59a37bb85ef83 with {'pipeline': 'scrnaseq', 'release': '2.0.0', 'sha': '27f37ab827b3f72e8e305256a9c59a37bb85ef83', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.996490', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1190710Z 2025-08-21 21:57:44,996 - INFO - āœ… Tagged current release: scrnaseq/results-27f37ab827b3f72e8e305256a9c59a37bb85ef83 +2025-08-21T21:57:45.1190981Z 2025-08-21 21:57:44,996 - INFO - Processing: bamtofastq/results-test-db5efc69473a48c74dfdaf70177a56939d83b414 +2025-08-21T21:57:45.1191898Z 2025-08-21 21:57:44,996 - INFO - DRY RUN: Would tag objects in bamtofastq/results-test-db5efc69473a48c74dfdaf70177a56939d83b414 with {'pipeline': 'bamtofastq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.996594', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1192349Z 2025-08-21 21:57:44,996 - WARNING - šŸ—‘ļø Tagged orphaned directory: bamtofastq/results-test-db5efc69473a48c74dfdaf70177a56939d83b414 +2025-08-21T21:57:45.1192587Z 2025-08-21 21:57:44,996 - INFO - Processing: crisprseq/results-53572ae0879454115d778862e89614e6279856f8 +2025-08-21T21:57:45.1193442Z 2025-08-21 21:57:44,996 - INFO - DRY RUN: Would tag objects in crisprseq/results-53572ae0879454115d778862e89614e6279856f8 with {'pipeline': 'crisprseq', 'release': '1.0', 'sha': '53572ae0879454115d778862e89614e6279856f8', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.996684', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1193803Z 2025-08-21 21:57:44,996 - INFO - āœ… Tagged current release: crisprseq/results-53572ae0879454115d778862e89614e6279856f8 +2025-08-21T21:57:45.1194050Z 2025-08-21 21:57:44,996 - INFO - Processing: pangenome/results-7fb3047d972143a0fe2d00b2f80d19d9df1703eb +2025-08-21T21:57:45.1195140Z 2025-08-21 21:57:44,996 - INFO - DRY RUN: Would tag objects in pangenome/results-7fb3047d972143a0fe2d00b2f80d19d9df1703eb with {'pipeline': 'pangenome', 'release': '1.1.1', 'sha': '7fb3047d972143a0fe2d00b2f80d19d9df1703eb', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.996770', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1195511Z 2025-08-21 21:57:44,996 - INFO - āœ… Tagged current release: pangenome/results-7fb3047d972143a0fe2d00b2f80d19d9df1703eb +2025-08-21T21:57:45.1195743Z 2025-08-21 21:57:44,996 - INFO - Processing: mag/results-d423f99b8fafcbdba3676cd6f4921280e71016c8 +2025-08-21T21:57:45.1196431Z 2025-08-21 21:57:44,996 - INFO - DRY RUN: Would tag objects in mag/results-d423f99b8fafcbdba3676cd6f4921280e71016c8 with {'pipeline': 'mag', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.996857', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1196867Z 2025-08-21 21:57:44,996 - WARNING - šŸ—‘ļø Tagged orphaned directory: mag/results-d423f99b8fafcbdba3676cd6f4921280e71016c8 +2025-08-21T21:57:45.1197168Z 2025-08-21 21:57:44,996 - INFO - Processing: multiplesequencealign/results-9e83630c5a40fe48694db80bd855d1dac429ee87 +2025-08-21T21:57:45.1198150Z 2025-08-21 21:57:44,996 - INFO - DRY RUN: Would tag objects in multiplesequencealign/results-9e83630c5a40fe48694db80bd855d1dac429ee87 with {'pipeline': 'multiplesequencealign', 'release': '1.0.0', 'sha': '9e83630c5a40fe48694db80bd855d1dac429ee87', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.996944', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1198577Z 2025-08-21 21:57:44,996 - INFO - āœ… Tagged current release: multiplesequencealign/results-9e83630c5a40fe48694db80bd855d1dac429ee87 +2025-08-21T21:57:45.1198722Z 2025-08-21 21:57:44,997 - INFO - Processing: sarek/results-dev +2025-08-21T21:57:45.1199299Z 2025-08-21 21:57:44,997 - INFO - DRY RUN: Would tag objects in sarek/results-dev with {'pipeline': 'sarek', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.997032', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1199560Z 2025-08-21 21:57:44,997 - WARNING - šŸ—‘ļø Tagged orphaned directory: sarek/results-dev +2025-08-21T21:57:45.1199831Z 2025-08-21 21:57:44,997 - INFO - Processing: genomeassembler/results-5e2d8b0ebba203e77366ff2dbcdbc786683fb36d +2025-08-21T21:57:45.1200632Z 2025-08-21 21:57:44,997 - INFO - DRY RUN: Would tag objects in genomeassembler/results-5e2d8b0ebba203e77366ff2dbcdbc786683fb36d with {'pipeline': 'genomeassembler', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.997119', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1201066Z 2025-08-21 21:57:44,997 - WARNING - šŸ—‘ļø Tagged orphaned directory: genomeassembler/results-5e2d8b0ebba203e77366ff2dbcdbc786683fb36d +2025-08-21T21:57:45.1201338Z 2025-08-21 21:57:44,997 - INFO - Processing: airrflow/results-test-e9f4adefb15d721df4cdc2f662756dde7c7ede21 +2025-08-21T21:57:45.1202211Z 2025-08-21 21:57:44,997 - INFO - DRY RUN: Would tag objects in airrflow/results-test-e9f4adefb15d721df4cdc2f662756dde7c7ede21 with {'pipeline': 'airrflow', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.997210', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1202665Z 2025-08-21 21:57:44,997 - WARNING - šŸ—‘ļø Tagged orphaned directory: airrflow/results-test-e9f4adefb15d721df4cdc2f662756dde7c7ede21 +2025-08-21T21:57:45.1202919Z 2025-08-21 21:57:44,997 - INFO - Processing: pangenome/results-9fc8ccd2eebb78ad93d14b52744d2e20967494dc +2025-08-21T21:57:45.1203812Z 2025-08-21 21:57:44,997 - INFO - DRY RUN: Would tag objects in pangenome/results-9fc8ccd2eebb78ad93d14b52744d2e20967494dc with {'pipeline': 'pangenome', 'release': '1.0.0', 'sha': '9fc8ccd2eebb78ad93d14b52744d2e20967494dc', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.997299', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1204193Z 2025-08-21 21:57:44,997 - INFO - āœ… Tagged current release: pangenome/results-9fc8ccd2eebb78ad93d14b52744d2e20967494dc +2025-08-21T21:57:45.1204567Z 2025-08-21 21:57:44,997 - INFO - Processing: demultiplex/results-8e42b6cb4e12bf00828fa8cb282e01bcb487fe6e +2025-08-21T21:57:45.1205554Z 2025-08-21 21:57:44,997 - INFO - DRY RUN: Would tag objects in demultiplex/results-8e42b6cb4e12bf00828fa8cb282e01bcb487fe6e with {'pipeline': 'demultiplex', 'release': '1.1.0', 'sha': '8e42b6cb4e12bf00828fa8cb282e01bcb487fe6e', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.997385', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1205969Z 2025-08-21 21:57:44,997 - INFO - āœ… Tagged current release: demultiplex/results-8e42b6cb4e12bf00828fa8cb282e01bcb487fe6e +2025-08-21T21:57:45.1206218Z 2025-08-21 21:57:44,997 - INFO - Processing: demultiplex/results-ebefeef236f0e566e2c874f483535c70d198c862 +2025-08-21T21:57:45.1207128Z 2025-08-21 21:57:44,997 - INFO - DRY RUN: Would tag objects in demultiplex/results-ebefeef236f0e566e2c874f483535c70d198c862 with {'pipeline': 'demultiplex', 'release': '1.5.2', 'sha': 'ebefeef236f0e566e2c874f483535c70d198c862', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.997470', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1207513Z 2025-08-21 21:57:44,997 - INFO - āœ… Tagged current release: demultiplex/results-ebefeef236f0e566e2c874f483535c70d198c862 +2025-08-21T21:57:45.1207793Z 2025-08-21 21:57:44,997 - INFO - Processing: testpipeline/results-test-3a4a19ce11b52b6a1545807723c266d4ec4d6f25 +2025-08-21T21:57:45.1208571Z 2025-08-21 21:57:44,997 - INFO - DRY RUN: Would tag objects in testpipeline/results-test-3a4a19ce11b52b6a1545807723c266d4ec4d6f25 with {'pipeline': 'testpipeline', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.997569', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1209018Z 2025-08-21 21:57:44,997 - WARNING - šŸ—‘ļø Tagged orphaned directory: testpipeline/results-test-3a4a19ce11b52b6a1545807723c266d4ec4d6f25 +2025-08-21T21:57:45.1209265Z 2025-08-21 21:57:44,997 - INFO - Processing: chipseq/results-f47e8ed0680096be2e361d4b3b63bab697e497a1 +2025-08-21T21:57:45.1209995Z 2025-08-21 21:57:44,997 - INFO - DRY RUN: Would tag objects in chipseq/results-f47e8ed0680096be2e361d4b3b63bab697e497a1 with {'pipeline': 'chipseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.997659', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1210394Z 2025-08-21 21:57:44,997 - WARNING - šŸ—‘ļø Tagged orphaned directory: chipseq/results-f47e8ed0680096be2e361d4b3b63bab697e497a1 +2025-08-21T21:57:45.1210646Z 2025-08-21 21:57:44,997 - INFO - Processing: rnafusion/results-fb5af65466730cf9d4d6c204b2ed8db0739245c8 +2025-08-21T21:57:45.1211522Z 2025-08-21 21:57:44,997 - INFO - DRY RUN: Would tag objects in rnafusion/results-fb5af65466730cf9d4d6c204b2ed8db0739245c8 with {'pipeline': 'rnafusion', 'release': '2.3.4', 'sha': 'fb5af65466730cf9d4d6c204b2ed8db0739245c8', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.997749', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1212119Z 2025-08-21 21:57:44,997 - INFO - āœ… Tagged current release: rnafusion/results-fb5af65466730cf9d4d6c204b2ed8db0739245c8 +2025-08-21T21:57:45.1212374Z 2025-08-21 21:57:44,997 - INFO - Processing: createtaxdb/results-73a0d574ce0700bc3df0a556ec4efb62ad00691f +2025-08-21T21:57:45.1213125Z 2025-08-21 21:57:44,997 - INFO - DRY RUN: Would tag objects in createtaxdb/results-73a0d574ce0700bc3df0a556ec4efb62ad00691f with {'pipeline': 'createtaxdb', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.997836', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1213543Z 2025-08-21 21:57:44,997 - WARNING - šŸ—‘ļø Tagged orphaned directory: createtaxdb/results-73a0d574ce0700bc3df0a556ec4efb62ad00691f +2025-08-21T21:57:45.1213786Z 2025-08-21 21:57:44,997 - INFO - Processing: rnaseq/results-7a04c5d571bf0dd693adf6ec1a5739ffe5d8d567 +2025-08-21T21:57:45.1214502Z 2025-08-21 21:57:44,997 - INFO - DRY RUN: Would tag objects in rnaseq/results-7a04c5d571bf0dd693adf6ec1a5739ffe5d8d567 with {'pipeline': 'rnaseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.997928', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1215135Z 2025-08-21 21:57:44,997 - WARNING - šŸ—‘ļø Tagged orphaned directory: rnaseq/results-7a04c5d571bf0dd693adf6ec1a5739ffe5d8d567 +2025-08-21T21:57:45.1215392Z 2025-08-21 21:57:44,997 - INFO - Processing: createtaxdb/results-c3dc901d7e19da8eb7e22a09d0040d691a73fc50 +2025-08-21T21:57:45.1216144Z 2025-08-21 21:57:44,998 - INFO - DRY RUN: Would tag objects in createtaxdb/results-c3dc901d7e19da8eb7e22a09d0040d691a73fc50 with {'pipeline': 'createtaxdb', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.998028', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1216559Z 2025-08-21 21:57:44,998 - WARNING - šŸ—‘ļø Tagged orphaned directory: createtaxdb/results-c3dc901d7e19da8eb7e22a09d0040d691a73fc50 +2025-08-21T21:57:45.1216812Z 2025-08-21 21:57:44,998 - INFO - Processing: mhcquant/results-b24db1e0fd9e63ac2dd41eb70355ef0ee6a211cd +2025-08-21T21:57:45.1217703Z 2025-08-21 21:57:44,998 - INFO - DRY RUN: Would tag objects in mhcquant/results-b24db1e0fd9e63ac2dd41eb70355ef0ee6a211cd with {'pipeline': 'mhcquant', 'release': '2.3.0', 'sha': 'b24db1e0fd9e63ac2dd41eb70355ef0ee6a211cd', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.998119', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1218074Z 2025-08-21 21:57:44,998 - INFO - āœ… Tagged current release: mhcquant/results-b24db1e0fd9e63ac2dd41eb70355ef0ee6a211cd +2025-08-21T21:57:45.1218364Z 2025-08-21 21:57:44,998 - INFO - Processing: methylseq/results-fd056660f7680072e86ef1d7bd0ac903a377c53e-bismark-CPU +2025-08-21T21:57:45.1219147Z 2025-08-21 21:57:44,998 - INFO - DRY RUN: Would tag objects in methylseq/results-fd056660f7680072e86ef1d7bd0ac903a377c53e-bismark-CPU with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.998207', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1219609Z 2025-08-21 21:57:44,998 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-fd056660f7680072e86ef1d7bd0ac903a377c53e-bismark-CPU +2025-08-21T21:57:45.1219892Z 2025-08-21 21:57:44,998 - INFO - Processing: denovotranscript/results-558ff4b639039ac8ec9bece3490841aa17eec971 +2025-08-21T21:57:45.1220823Z 2025-08-21 21:57:44,998 - INFO - DRY RUN: Would tag objects in denovotranscript/results-558ff4b639039ac8ec9bece3490841aa17eec971 with {'pipeline': 'denovotranscript', 'release': '1.0.0', 'sha': '558ff4b639039ac8ec9bece3490841aa17eec971', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.998298', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1221230Z 2025-08-21 21:57:44,998 - INFO - āœ… Tagged current release: denovotranscript/results-558ff4b639039ac8ec9bece3490841aa17eec971 +2025-08-21T21:57:45.1221452Z 2025-08-21 21:57:44,998 - INFO - Processing: mag/results-a3c34713507c6b95535d4f346764c4be8f6cfdc1 +2025-08-21T21:57:45.1222260Z 2025-08-21 21:57:44,998 - INFO - DRY RUN: Would tag objects in mag/results-a3c34713507c6b95535d4f346764c4be8f6cfdc1 with {'pipeline': 'mag', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.998387', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1222646Z 2025-08-21 21:57:44,998 - WARNING - šŸ—‘ļø Tagged orphaned directory: mag/results-a3c34713507c6b95535d4f346764c4be8f6cfdc1 +2025-08-21T21:57:45.1222904Z 2025-08-21 21:57:44,998 - INFO - Processing: methylong/results-c0a4fbac5b7cd6d3dacb600b27c8fd87fd13f10b +2025-08-21T21:57:45.1223651Z 2025-08-21 21:57:44,998 - INFO - DRY RUN: Would tag objects in methylong/results-c0a4fbac5b7cd6d3dacb600b27c8fd87fd13f10b with {'pipeline': 'methylong', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.998477', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1224067Z 2025-08-21 21:57:44,998 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylong/results-c0a4fbac5b7cd6d3dacb600b27c8fd87fd13f10b +2025-08-21T21:57:45.1224309Z 2025-08-21 21:57:44,998 - INFO - Processing: ampliseq/results-83877d2fe539293818be84dec3bd1f43238c9c3c +2025-08-21T21:57:45.1225383Z 2025-08-21 21:57:44,998 - INFO - DRY RUN: Would tag objects in ampliseq/results-83877d2fe539293818be84dec3bd1f43238c9c3c with {'pipeline': 'ampliseq', 'release': '2.4.1', 'sha': '83877d2fe539293818be84dec3bd1f43238c9c3c', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.998592', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1225754Z 2025-08-21 21:57:44,998 - INFO - āœ… Tagged current release: ampliseq/results-83877d2fe539293818be84dec3bd1f43238c9c3c +2025-08-21T21:57:45.1226010Z 2025-08-21 21:57:44,998 - INFO - Processing: raredisease/results-47a41a53ecf3c10408efb6a26a3cb2608d71289d +2025-08-21T21:57:45.1226755Z 2025-08-21 21:57:44,998 - INFO - DRY RUN: Would tag objects in raredisease/results-47a41a53ecf3c10408efb6a26a3cb2608d71289d with {'pipeline': 'raredisease', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.998683', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1227179Z 2025-08-21 21:57:44,998 - WARNING - šŸ—‘ļø Tagged orphaned directory: raredisease/results-47a41a53ecf3c10408efb6a26a3cb2608d71289d +2025-08-21T21:57:45.1227432Z 2025-08-21 21:57:44,998 - INFO - Processing: demultiplex/results-2d9cb0582d9b8b56465eace57b500c39d3e1749c +2025-08-21T21:57:45.1228325Z 2025-08-21 21:57:44,998 - INFO - DRY RUN: Would tag objects in demultiplex/results-2d9cb0582d9b8b56465eace57b500c39d3e1749c with {'pipeline': 'demultiplex', 'release': '1.6.1', 'sha': '2d9cb0582d9b8b56465eace57b500c39d3e1749c', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.998772', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1228701Z 2025-08-21 21:57:44,998 - INFO - āœ… Tagged current release: demultiplex/results-2d9cb0582d9b8b56465eace57b500c39d3e1749c +2025-08-21T21:57:45.1228941Z 2025-08-21 21:57:44,998 - INFO - Processing: scrnaseq/results-c86646e4a818397f4bddfffd641b34240423f3ea +2025-08-21T21:57:45.1229809Z 2025-08-21 21:57:44,998 - INFO - DRY RUN: Would tag objects in scrnaseq/results-c86646e4a818397f4bddfffd641b34240423f3ea with {'pipeline': 'scrnaseq', 'release': '2.1.0', 'sha': 'c86646e4a818397f4bddfffd641b34240423f3ea', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.998870', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1230184Z 2025-08-21 21:57:44,998 - INFO - āœ… Tagged current release: scrnaseq/results-c86646e4a818397f4bddfffd641b34240423f3ea +2025-08-21T21:57:45.1230463Z 2025-08-21 21:57:44,998 - INFO - Processing: variantbenchmarking/results-55e33f4c03e478f79f46f7c268c707640519ab70 +2025-08-21T21:57:45.1231417Z 2025-08-21 21:57:44,998 - INFO - DRY RUN: Would tag objects in variantbenchmarking/results-55e33f4c03e478f79f46f7c268c707640519ab70 with {'pipeline': 'variantbenchmarking', 'release': '1.3.0', 'sha': '55e33f4c03e478f79f46f7c268c707640519ab70', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.998955', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1231945Z 2025-08-21 21:57:44,998 - INFO - āœ… Tagged current release: variantbenchmarking/results-55e33f4c03e478f79f46f7c268c707640519ab70 +2025-08-21T21:57:45.1232115Z 2025-08-21 21:57:44,999 - INFO - Processing: metatdenovo/results-dev +2025-08-21T21:57:45.1232721Z 2025-08-21 21:57:44,999 - INFO - DRY RUN: Would tag objects in metatdenovo/results-dev with {'pipeline': 'metatdenovo', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.999044', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1232997Z 2025-08-21 21:57:44,999 - WARNING - šŸ—‘ļø Tagged orphaned directory: metatdenovo/results-dev +2025-08-21T21:57:45.1233130Z 2025-08-21 21:57:44,999 - INFO - Processing: mag/results-dev +2025-08-21T21:57:45.1233669Z 2025-08-21 21:57:44,999 - INFO - DRY RUN: Would tag objects in mag/results-dev with {'pipeline': 'mag', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.999133', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1233910Z 2025-08-21 21:57:44,999 - WARNING - šŸ—‘ļø Tagged orphaned directory: mag/results-dev +2025-08-21T21:57:45.1234155Z 2025-08-21 21:57:44,999 - INFO - Processing: rnaseq/results-6995330476244a6bffe55ddcbe50b8ed5cf6c2e2 +2025-08-21T21:57:45.1235208Z 2025-08-21 21:57:44,999 - INFO - DRY RUN: Would tag objects in rnaseq/results-6995330476244a6bffe55ddcbe50b8ed5cf6c2e2 with {'pipeline': 'rnaseq', 'release': '3.8', 'sha': '6995330476244a6bffe55ddcbe50b8ed5cf6c2e2', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.999225', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1235578Z 2025-08-21 21:57:44,999 - INFO - āœ… Tagged current release: rnaseq/results-6995330476244a6bffe55ddcbe50b8ed5cf6c2e2 +2025-08-21T21:57:45.1235841Z 2025-08-21 21:57:44,999 - INFO - Processing: proteinfamilies/results-58e15747237c4d921094f8c94be143889666ec89 +2025-08-21T21:57:45.1236761Z 2025-08-21 21:57:44,999 - INFO - DRY RUN: Would tag objects in proteinfamilies/results-58e15747237c4d921094f8c94be143889666ec89 with {'pipeline': 'proteinfamilies', 'release': '1.2.0', 'sha': '58e15747237c4d921094f8c94be143889666ec89', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.999314', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1237157Z 2025-08-21 21:57:44,999 - INFO - āœ… Tagged current release: proteinfamilies/results-58e15747237c4d921094f8c94be143889666ec89 +2025-08-21T21:57:45.1237397Z 2025-08-21 21:57:44,999 - INFO - Processing: chipseq/results-76e2382b6d443db4dc2396e6831d1243256d80b0 +2025-08-21T21:57:45.1238244Z 2025-08-21 21:57:44,999 - INFO - DRY RUN: Would tag objects in chipseq/results-76e2382b6d443db4dc2396e6831d1243256d80b0 with {'pipeline': 'chipseq', 'release': '2.1.0', 'sha': '76e2382b6d443db4dc2396e6831d1243256d80b0', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.999404', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1238602Z 2025-08-21 21:57:44,999 - INFO - āœ… Tagged current release: chipseq/results-76e2382b6d443db4dc2396e6831d1243256d80b0 +2025-08-21T21:57:45.1238845Z 2025-08-21 21:57:44,999 - INFO - Processing: rnafusion/results-42eb8d6322abdad8cd65037a4a2ce447450e9af9 +2025-08-21T21:57:45.1239732Z 2025-08-21 21:57:44,999 - INFO - DRY RUN: Would tag objects in rnafusion/results-42eb8d6322abdad8cd65037a4a2ce447450e9af9 with {'pipeline': 'rnafusion', 'release': '3.0.2', 'sha': '42eb8d6322abdad8cd65037a4a2ce447450e9af9', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.999491', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1240109Z 2025-08-21 21:57:44,999 - INFO - āœ… Tagged current release: rnafusion/results-42eb8d6322abdad8cd65037a4a2ce447450e9af9 +2025-08-21T21:57:45.1240403Z 2025-08-21 21:57:44,999 - INFO - Processing: multiplesequencealign/results-fbcaf895496df59a521b96dd9b11f3634f9e62be +2025-08-21T21:57:45.1241240Z 2025-08-21 21:57:44,999 - INFO - DRY RUN: Would tag objects in multiplesequencealign/results-fbcaf895496df59a521b96dd9b11f3634f9e62be with {'pipeline': 'multiplesequencealign', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.999609', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1241848Z 2025-08-21 21:57:44,999 - WARNING - šŸ—‘ļø Tagged orphaned directory: multiplesequencealign/results-fbcaf895496df59a521b96dd9b11f3634f9e62be +2025-08-21T21:57:45.1242022Z 2025-08-21 21:57:44,999 - INFO - Processing: drugresponseeval/results-dev +2025-08-21T21:57:45.1242680Z 2025-08-21 21:57:44,999 - INFO - DRY RUN: Would tag objects in drugresponseeval/results-dev with {'pipeline': 'drugresponseeval', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.999702', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1242970Z 2025-08-21 21:57:44,999 - WARNING - šŸ—‘ļø Tagged orphaned directory: drugresponseeval/results-dev +2025-08-21T21:57:45.1243190Z 2025-08-21 21:57:44,999 - INFO - Processing: mag/results-997847ed4714a644c96d87348926e6966160f5dc +2025-08-21T21:57:45.1243864Z 2025-08-21 21:57:44,999 - INFO - DRY RUN: Would tag objects in mag/results-997847ed4714a644c96d87348926e6966160f5dc with {'pipeline': 'mag', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:44.999791', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1244393Z 2025-08-21 21:57:44,999 - WARNING - šŸ—‘ļø Tagged orphaned directory: mag/results-997847ed4714a644c96d87348926e6966160f5dc +2025-08-21T21:57:45.1244628Z 2025-08-21 21:57:44,999 - INFO - Processing: nanoseq/results-1e60482a2c4621234393a6eef8e9a104309c20ae +2025-08-21T21:57:45.1245576Z 2025-08-21 21:57:44,999 - INFO - DRY RUN: Would tag objects in nanoseq/results-1e60482a2c4621234393a6eef8e9a104309c20ae with {'pipeline': 'nanoseq', 'release': '3.0.0', 'sha': '1e60482a2c4621234393a6eef8e9a104309c20ae', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.999885', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1245934Z 2025-08-21 21:57:44,999 - INFO - āœ… Tagged current release: nanoseq/results-1e60482a2c4621234393a6eef8e9a104309c20ae +2025-08-21T21:57:45.1246174Z 2025-08-21 21:57:44,999 - INFO - Processing: smrnaseq/results-72c4c4cf83e1f534319493f9de8344854f59736f +2025-08-21T21:57:45.1247040Z 2025-08-21 21:57:44,999 - INFO - DRY RUN: Would tag objects in smrnaseq/results-72c4c4cf83e1f534319493f9de8344854f59736f with {'pipeline': 'smrnaseq', 'release': '2.4.0', 'sha': '72c4c4cf83e1f534319493f9de8344854f59736f', 'status': 'current', 'tagged_date': '2025-08-21T21:57:44.999983', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1247411Z 2025-08-21 21:57:45,000 - INFO - āœ… Tagged current release: smrnaseq/results-72c4c4cf83e1f534319493f9de8344854f59736f +2025-08-21T21:57:45.1247632Z 2025-08-21 21:57:45,000 - INFO - Processing: mag/results-ba7234959405b7a6df253d6d03158a7cde030c96 +2025-08-21T21:57:45.1248461Z 2025-08-21 21:57:45,000 - INFO - DRY RUN: Would tag objects in mag/results-ba7234959405b7a6df253d6d03158a7cde030c96 with {'pipeline': 'mag', 'release': '2.5.0', 'sha': 'ba7234959405b7a6df253d6d03158a7cde030c96', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.000069', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1248800Z 2025-08-21 21:57:45,000 - INFO - āœ… Tagged current release: mag/results-ba7234959405b7a6df253d6d03158a7cde030c96 +2025-08-21T21:57:45.1249055Z 2025-08-21 21:57:45,000 - INFO - Processing: cageseq/results-729fbcb775bfde5c2f2af731374fbdfcb697d5eb +2025-08-21T21:57:45.1249917Z 2025-08-21 21:57:45,000 - INFO - DRY RUN: Would tag objects in cageseq/results-729fbcb775bfde5c2f2af731374fbdfcb697d5eb with {'pipeline': 'cageseq', 'release': '1.0.0', 'sha': '729fbcb775bfde5c2f2af731374fbdfcb697d5eb', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.000156', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1250280Z 2025-08-21 21:57:45,000 - INFO - āœ… Tagged current release: cageseq/results-729fbcb775bfde5c2f2af731374fbdfcb697d5eb +2025-08-21T21:57:45.1250536Z 2025-08-21 21:57:45,000 - INFO - Processing: metapep/results-test-84feafc9476978c2a1b84849871a553cffd9762a +2025-08-21T21:57:45.1251399Z 2025-08-21 21:57:45,000 - INFO - DRY RUN: Would tag objects in metapep/results-test-84feafc9476978c2a1b84849871a553cffd9762a with {'pipeline': 'metapep', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.000243', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1251837Z 2025-08-21 21:57:45,000 - WARNING - šŸ—‘ļø Tagged orphaned directory: metapep/results-test-84feafc9476978c2a1b84849871a553cffd9762a +2025-08-21T21:57:45.1252092Z 2025-08-21 21:57:45,000 - INFO - Processing: raredisease/results-0a330371c69e31e385db5c119d2b850f1154a7e8 +2025-08-21T21:57:45.1252838Z 2025-08-21 21:57:45,000 - INFO - DRY RUN: Would tag objects in raredisease/results-0a330371c69e31e385db5c119d2b850f1154a7e8 with {'pipeline': 'raredisease', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.000333', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1253255Z 2025-08-21 21:57:45,000 - WARNING - šŸ—‘ļø Tagged orphaned directory: raredisease/results-0a330371c69e31e385db5c119d2b850f1154a7e8 +2025-08-21T21:57:45.1253486Z 2025-08-21 21:57:45,000 - INFO - Processing: rnaseq/results-b96a75361a4f1d49aa969a2b1c68e3e607de06e8 +2025-08-21T21:57:45.1254346Z 2025-08-21 21:57:45,000 - INFO - DRY RUN: Would tag objects in rnaseq/results-b96a75361a4f1d49aa969a2b1c68e3e607de06e8 with {'pipeline': 'rnaseq', 'release': '3.18.0', 'sha': 'b96a75361a4f1d49aa969a2b1c68e3e607de06e8', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.000422', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1254817Z 2025-08-21 21:57:45,000 - INFO - āœ… Tagged current release: rnaseq/results-b96a75361a4f1d49aa969a2b1c68e3e607de06e8 +2025-08-21T21:57:45.1255170Z 2025-08-21 21:57:45,000 - INFO - Processing: viralrecon/results-fc9fece226061594208a25c8acdc05b0bf7c14d1 +2025-08-21T21:57:45.1256052Z 2025-08-21 21:57:45,000 - INFO - DRY RUN: Would tag objects in viralrecon/results-fc9fece226061594208a25c8acdc05b0bf7c14d1 with {'pipeline': 'viralrecon', 'release': '2.3', 'sha': 'fc9fece226061594208a25c8acdc05b0bf7c14d1', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.000530', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1256431Z 2025-08-21 21:57:45,000 - INFO - āœ… Tagged current release: viralrecon/results-fc9fece226061594208a25c8acdc05b0bf7c14d1 +2025-08-21T21:57:45.1256682Z 2025-08-21 21:57:45,000 - INFO - Processing: ampliseq/results-8f139cecd95a23920617f2c2b154733494ed4562 +2025-08-21T21:57:45.1257544Z 2025-08-21 21:57:45,000 - INFO - DRY RUN: Would tag objects in ampliseq/results-8f139cecd95a23920617f2c2b154733494ed4562 with {'pipeline': 'ampliseq', 'release': '2.12.0', 'sha': '8f139cecd95a23920617f2c2b154733494ed4562', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.000621', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1257901Z 2025-08-21 21:57:45,000 - INFO - āœ… Tagged current release: ampliseq/results-8f139cecd95a23920617f2c2b154733494ed4562 +2025-08-21T21:57:45.1258060Z 2025-08-21 21:57:45,000 - INFO - Processing: oncoanalyser/results-dev +2025-08-21T21:57:45.1258675Z 2025-08-21 21:57:45,000 - INFO - DRY RUN: Would tag objects in oncoanalyser/results-dev with {'pipeline': 'oncoanalyser', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.000709', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1258962Z 2025-08-21 21:57:45,000 - WARNING - šŸ—‘ļø Tagged orphaned directory: oncoanalyser/results-dev +2025-08-21T21:57:45.1259185Z 2025-08-21 21:57:45,000 - INFO - Processing: mag/results-2963ba0050da439ebb667769116f98ffa22b9a45 +2025-08-21T21:57:45.1259870Z 2025-08-21 21:57:45,000 - INFO - DRY RUN: Would tag objects in mag/results-2963ba0050da439ebb667769116f98ffa22b9a45 with {'pipeline': 'mag', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.000799', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1260246Z 2025-08-21 21:57:45,000 - WARNING - šŸ—‘ļø Tagged orphaned directory: mag/results-2963ba0050da439ebb667769116f98ffa22b9a45 +2025-08-21T21:57:45.1260489Z 2025-08-21 21:57:45,000 - INFO - Processing: smrnaseq/results-e6b6e5a06eef96d1dd2ecb207f401308748d8902 +2025-08-21T21:57:45.1261476Z 2025-08-21 21:57:45,000 - INFO - DRY RUN: Would tag objects in smrnaseq/results-e6b6e5a06eef96d1dd2ecb207f401308748d8902 with {'pipeline': 'smrnaseq', 'release': '2.2.2', 'sha': 'e6b6e5a06eef96d1dd2ecb207f401308748d8902', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.000887', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1261866Z 2025-08-21 21:57:45,000 - INFO - āœ… Tagged current release: smrnaseq/results-e6b6e5a06eef96d1dd2ecb207f401308748d8902 +2025-08-21T21:57:45.1262099Z 2025-08-21 21:57:45,000 - INFO - Processing: eager/results-42c9d5f8602e5e88fdcec28f194d2cd4cff61c75 +2025-08-21T21:57:45.1262948Z 2025-08-21 21:57:45,000 - INFO - DRY RUN: Would tag objects in eager/results-42c9d5f8602e5e88fdcec28f194d2cd4cff61c75 with {'pipeline': 'eager', 'release': '2.4.5', 'sha': '42c9d5f8602e5e88fdcec28f194d2cd4cff61c75', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.000974', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1263302Z 2025-08-21 21:57:45,001 - INFO - āœ… Tagged current release: eager/results-42c9d5f8602e5e88fdcec28f194d2cd4cff61c75 +2025-08-21T21:57:45.1263606Z 2025-08-21 21:57:45,001 - INFO - Processing: denovotranscript/results-test-a5240dc6fa5fcd158375fa668b14bbc77c2e8ff6 +2025-08-21T21:57:45.1264566Z 2025-08-21 21:57:45,001 - INFO - DRY RUN: Would tag objects in denovotranscript/results-test-a5240dc6fa5fcd158375fa668b14bbc77c2e8ff6 with {'pipeline': 'denovotranscript', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.001068', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1265139Z 2025-08-21 21:57:45,001 - WARNING - šŸ—‘ļø Tagged orphaned directory: denovotranscript/results-test-a5240dc6fa5fcd158375fa668b14bbc77c2e8ff6 +2025-08-21T21:57:45.1265373Z 2025-08-21 21:57:45,001 - INFO - Processing: eager/results-4eb0ffea9d5661ae2c555228c85caa6f800daee9 +2025-08-21T21:57:45.1266225Z 2025-08-21 21:57:45,001 - INFO - DRY RUN: Would tag objects in eager/results-4eb0ffea9d5661ae2c555228c85caa6f800daee9 with {'pipeline': 'eager', 'release': '2.5.1', 'sha': '4eb0ffea9d5661ae2c555228c85caa6f800daee9', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.001157', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1266595Z 2025-08-21 21:57:45,001 - INFO - āœ… Tagged current release: eager/results-4eb0ffea9d5661ae2c555228c85caa6f800daee9 +2025-08-21T21:57:45.1266859Z 2025-08-21 21:57:45,001 - INFO - Processing: readsimulator/results-f538a00fa47c7b14cdf55443fd4004e5c1d24880 +2025-08-21T21:57:45.1267619Z 2025-08-21 21:57:45,001 - INFO - DRY RUN: Would tag objects in readsimulator/results-f538a00fa47c7b14cdf55443fd4004e5c1d24880 with {'pipeline': 'readsimulator', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.001243', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1268052Z 2025-08-21 21:57:45,001 - WARNING - šŸ—‘ļø Tagged orphaned directory: readsimulator/results-f538a00fa47c7b14cdf55443fd4004e5c1d24880 +2025-08-21T21:57:45.1268272Z 2025-08-21 21:57:45,001 - INFO - Processing: eager/results-65055295800d081fb5c5b9ae14267906c7c55b80 +2025-08-21T21:57:45.1269112Z 2025-08-21 21:57:45,001 - INFO - DRY RUN: Would tag objects in eager/results-65055295800d081fb5c5b9ae14267906c7c55b80 with {'pipeline': 'eager', 'release': '2.5.2', 'sha': '65055295800d081fb5c5b9ae14267906c7c55b80', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.001333', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1269462Z 2025-08-21 21:57:45,001 - INFO - āœ… Tagged current release: eager/results-65055295800d081fb5c5b9ae14267906c7c55b80 +2025-08-21T21:57:45.1269730Z 2025-08-21 21:57:45,001 - INFO - Processing: genomeassembler/results-05c63822d3d35e3a06b9de6ed434796ecbfa5e18 +2025-08-21T21:57:45.1270511Z 2025-08-21 21:57:45,001 - INFO - DRY RUN: Would tag objects in genomeassembler/results-05c63822d3d35e3a06b9de6ed434796ecbfa5e18 with {'pipeline': 'genomeassembler', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.001420', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1270947Z 2025-08-21 21:57:45,001 - WARNING - šŸ—‘ļø Tagged orphaned directory: genomeassembler/results-05c63822d3d35e3a06b9de6ed434796ecbfa5e18 +2025-08-21T21:57:45.1271287Z 2025-08-21 21:57:45,001 - INFO - Processing: mag/results-2c1554fe6c8daa83050f71ea8254de3b118ab5e9 +2025-08-21T21:57:45.1271987Z 2025-08-21 21:57:45,001 - INFO - DRY RUN: Would tag objects in mag/results-2c1554fe6c8daa83050f71ea8254de3b118ab5e9 with {'pipeline': 'mag', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.001527', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1272369Z 2025-08-21 21:57:45,001 - WARNING - šŸ—‘ļø Tagged orphaned directory: mag/results-2c1554fe6c8daa83050f71ea8254de3b118ab5e9 +2025-08-21T21:57:45.1272565Z 2025-08-21 21:57:45,001 - INFO - Processing: methylseq/results-dev-bismark_hisat-CPU +2025-08-21T21:57:45.1273219Z 2025-08-21 21:57:45,001 - INFO - DRY RUN: Would tag objects in methylseq/results-dev-bismark_hisat-CPU with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.001595', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1273558Z 2025-08-21 21:57:45,001 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-dev-bismark_hisat-CPU +2025-08-21T21:57:45.1273911Z 2025-08-21 21:57:45,001 - INFO - Processing: reportho/results-dd05afebd1e19739b7fa6002bf0c10ce42b33821 +2025-08-21T21:57:45.1274790Z 2025-08-21 21:57:45,001 - INFO - DRY RUN: Would tag objects in reportho/results-dd05afebd1e19739b7fa6002bf0c10ce42b33821 with {'pipeline': 'reportho', 'release': '1.0.0', 'sha': 'dd05afebd1e19739b7fa6002bf0c10ce42b33821', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.001688', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1275262Z 2025-08-21 21:57:45,001 - INFO - āœ… Tagged current release: reportho/results-dd05afebd1e19739b7fa6002bf0c10ce42b33821 +2025-08-21T21:57:45.1275454Z 2025-08-21 21:57:45,001 - INFO - Processing: methylseq/results-dev-bismark_hisat-ARM +2025-08-21T21:57:45.1276110Z 2025-08-21 21:57:45,001 - INFO - DRY RUN: Would tag objects in methylseq/results-dev-bismark_hisat-ARM with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.001775', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1276446Z 2025-08-21 21:57:45,001 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-dev-bismark_hisat-ARM +2025-08-21T21:57:45.1276684Z 2025-08-21 21:57:45,001 - INFO - Processing: smrnaseq/results-c611b15e973999368a6d44dcee3f26c3e392358f +2025-08-21T21:57:45.1277548Z 2025-08-21 21:57:45,001 - INFO - DRY RUN: Would tag objects in smrnaseq/results-c611b15e973999368a6d44dcee3f26c3e392358f with {'pipeline': 'smrnaseq', 'release': '2.3.0', 'sha': 'c611b15e973999368a6d44dcee3f26c3e392358f', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.001864', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1277908Z 2025-08-21 21:57:45,001 - INFO - āœ… Tagged current release: smrnaseq/results-c611b15e973999368a6d44dcee3f26c3e392358f +2025-08-21T21:57:45.1278174Z 2025-08-21 21:57:45,001 - INFO - Processing: metaboigniter/results-2f8f077d38fcacd2caef9590dc557ddcc17c78c6 +2025-08-21T21:57:45.1279096Z 2025-08-21 21:57:45,001 - INFO - DRY RUN: Would tag objects in metaboigniter/results-2f8f077d38fcacd2caef9590dc557ddcc17c78c6 with {'pipeline': 'metaboigniter', 'release': '2.0.0', 'sha': '2f8f077d38fcacd2caef9590dc557ddcc17c78c6', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.001951', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1279499Z 2025-08-21 21:57:45,001 - INFO - āœ… Tagged current release: metaboigniter/results-2f8f077d38fcacd2caef9590dc557ddcc17c78c6 +2025-08-21T21:57:45.1279732Z 2025-08-21 21:57:45,002 - INFO - Processing: rnaseq/results-93452bcf677c7b933f1d21f1bb4b1688787a905f +2025-08-21T21:57:45.1280444Z 2025-08-21 21:57:45,002 - INFO - DRY RUN: Would tag objects in rnaseq/results-93452bcf677c7b933f1d21f1bb4b1688787a905f with {'pipeline': 'rnaseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.002040', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1280835Z 2025-08-21 21:57:45,002 - WARNING - šŸ—‘ļø Tagged orphaned directory: rnaseq/results-93452bcf677c7b933f1d21f1bb4b1688787a905f +2025-08-21T21:57:45.1281192Z 2025-08-21 21:57:45,002 - INFO - Processing: sarek/results-ea88402912c329b4fd234ad07294ce05bbd2590c +2025-08-21T21:57:45.1282035Z 2025-08-21 21:57:45,002 - INFO - DRY RUN: Would tag objects in sarek/results-ea88402912c329b4fd234ad07294ce05bbd2590c with {'pipeline': 'sarek', 'release': '3.4.1', 'sha': 'ea88402912c329b4fd234ad07294ce05bbd2590c', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.002128', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1282392Z 2025-08-21 21:57:45,002 - INFO - āœ… Tagged current release: sarek/results-ea88402912c329b4fd234ad07294ce05bbd2590c +2025-08-21T21:57:45.1282663Z 2025-08-21 21:57:45,002 - INFO - Processing: genomeassembler/results-e7636a6fd1f2aadd25a2c0b00a5dca1e98b548b5 +2025-08-21T21:57:45.1283605Z 2025-08-21 21:57:45,002 - INFO - DRY RUN: Would tag objects in genomeassembler/results-e7636a6fd1f2aadd25a2c0b00a5dca1e98b548b5 with {'pipeline': 'genomeassembler', 'release': '1.0.0', 'sha': 'e7636a6fd1f2aadd25a2c0b00a5dca1e98b548b5', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.002219', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1284117Z 2025-08-21 21:57:45,002 - INFO - āœ… Tagged current release: genomeassembler/results-e7636a6fd1f2aadd25a2c0b00a5dca1e98b548b5 +2025-08-21T21:57:45.1284356Z 2025-08-21 21:57:45,002 - INFO - Processing: quantms/results-6ffb0c92964cb70e212e18225c769b9e26cb1c11 +2025-08-21T21:57:45.1285160Z 2025-08-21 21:57:45,002 - INFO - DRY RUN: Would tag objects in quantms/results-6ffb0c92964cb70e212e18225c769b9e26cb1c11 with {'pipeline': 'quantms', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.002306', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1285567Z 2025-08-21 21:57:45,002 - WARNING - šŸ—‘ļø Tagged orphaned directory: quantms/results-6ffb0c92964cb70e212e18225c769b9e26cb1c11 +2025-08-21T21:57:45.1285815Z 2025-08-21 21:57:45,002 - INFO - Processing: taxprofiler/results-68938940f3c95f53f6c71c9742ab0d947ccba821 +2025-08-21T21:57:45.1286717Z 2025-08-21 21:57:45,002 - INFO - DRY RUN: Would tag objects in taxprofiler/results-68938940f3c95f53f6c71c9742ab0d947ccba821 with {'pipeline': 'taxprofiler', 'release': '1.2.0', 'sha': '68938940f3c95f53f6c71c9742ab0d947ccba821', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.002396', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1287098Z 2025-08-21 21:57:45,002 - INFO - āœ… Tagged current release: taxprofiler/results-68938940f3c95f53f6c71c9742ab0d947ccba821 +2025-08-21T21:57:45.1287333Z 2025-08-21 21:57:45,002 - INFO - Processing: eager/results-ad8e41a20a49febb1814c530de5460a5d342df8c +2025-08-21T21:57:45.1288171Z 2025-08-21 21:57:45,002 - INFO - DRY RUN: Would tag objects in eager/results-ad8e41a20a49febb1814c530de5460a5d342df8c with {'pipeline': 'eager', 'release': '2.3.3', 'sha': 'ad8e41a20a49febb1814c530de5460a5d342df8c', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.002477', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1288531Z 2025-08-21 21:57:45,002 - INFO - āœ… Tagged current release: eager/results-ad8e41a20a49febb1814c530de5460a5d342df8c +2025-08-21T21:57:45.1288780Z 2025-08-21 21:57:45,002 - INFO - Processing: nanostring/results-b79564a85be0b86a9555de1b95183546b01fc51e +2025-08-21T21:57:45.1289659Z 2025-08-21 21:57:45,002 - INFO - DRY RUN: Would tag objects in nanostring/results-b79564a85be0b86a9555de1b95183546b01fc51e with {'pipeline': 'nanostring', 'release': '1.2.1', 'sha': 'b79564a85be0b86a9555de1b95183546b01fc51e', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.002585', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1290028Z 2025-08-21 21:57:45,002 - INFO - āœ… Tagged current release: nanostring/results-b79564a85be0b86a9555de1b95183546b01fc51e +2025-08-21T21:57:45.1290282Z 2025-08-21 21:57:45,002 - INFO - Processing: taxprofiler/results-b280ccbf544d88463f996d8f823bbf5910f2afcb +2025-08-21T21:57:45.1291145Z 2025-08-21 21:57:45,002 - INFO - DRY RUN: Would tag objects in taxprofiler/results-b280ccbf544d88463f996d8f823bbf5910f2afcb with {'pipeline': 'taxprofiler', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.002673', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1291578Z 2025-08-21 21:57:45,002 - WARNING - šŸ—‘ļø Tagged orphaned directory: taxprofiler/results-b280ccbf544d88463f996d8f823bbf5910f2afcb +2025-08-21T21:57:45.1291860Z 2025-08-21 21:57:45,002 - INFO - Processing: testpipeline/results-test-df381cf381ac158b5046fce4246bb8adfa494c9f +2025-08-21T21:57:45.1292652Z 2025-08-21 21:57:45,002 - INFO - DRY RUN: Would tag objects in testpipeline/results-test-df381cf381ac158b5046fce4246bb8adfa494c9f with {'pipeline': 'testpipeline', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.002761', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1293096Z 2025-08-21 21:57:45,002 - WARNING - šŸ—‘ļø Tagged orphaned directory: testpipeline/results-test-df381cf381ac158b5046fce4246bb8adfa494c9f +2025-08-21T21:57:45.1293361Z 2025-08-21 21:57:45,002 - INFO - Processing: fetchngs/results-test-27067828746a19484d40d4d175f7e14044e5beb3 +2025-08-21T21:57:45.1294210Z 2025-08-21 21:57:45,002 - INFO - DRY RUN: Would tag objects in fetchngs/results-test-27067828746a19484d40d4d175f7e14044e5beb3 with {'pipeline': 'fetchngs', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.002848', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1294634Z 2025-08-21 21:57:45,002 - WARNING - šŸ—‘ļø Tagged orphaned directory: fetchngs/results-test-27067828746a19484d40d4d175f7e14044e5beb3 +2025-08-21T21:57:45.1294862Z 2025-08-21 21:57:45,002 - INFO - Processing: sarek/results-5cc30494a6b8e7e53be64d308b582190ca7d2585 +2025-08-21T21:57:45.1295803Z 2025-08-21 21:57:45,002 - INFO - DRY RUN: Would tag objects in sarek/results-5cc30494a6b8e7e53be64d308b582190ca7d2585 with {'pipeline': 'sarek', 'release': '3.4.4', 'sha': '5cc30494a6b8e7e53be64d308b582190ca7d2585', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.002934', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1296166Z 2025-08-21 21:57:45,002 - INFO - āœ… Tagged current release: sarek/results-5cc30494a6b8e7e53be64d308b582190ca7d2585 +2025-08-21T21:57:45.1296440Z 2025-08-21 21:57:45,002 - INFO - Processing: pacvar/results-test-aee0823afa21785b2eb7abbdf1e6c801d5a2e06b +2025-08-21T21:57:45.1297177Z 2025-08-21 21:57:45,003 - INFO - DRY RUN: Would tag objects in pacvar/results-test-aee0823afa21785b2eb7abbdf1e6c801d5a2e06b with {'pipeline': 'pacvar', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.003020', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1297602Z 2025-08-21 21:57:45,003 - WARNING - šŸ—‘ļø Tagged orphaned directory: pacvar/results-test-aee0823afa21785b2eb7abbdf1e6c801d5a2e06b +2025-08-21T21:57:45.1297877Z 2025-08-21 21:57:45,003 - INFO - Processing: drugresponseeval/results-34b5b1a8a7b9e49d59920ecf92a7d9c7c09b4d3c +2025-08-21T21:57:45.1298679Z 2025-08-21 21:57:45,003 - INFO - DRY RUN: Would tag objects in drugresponseeval/results-34b5b1a8a7b9e49d59920ecf92a7d9c7c09b4d3c with {'pipeline': 'drugresponseeval', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.003108', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1299120Z 2025-08-21 21:57:45,003 - WARNING - šŸ—‘ļø Tagged orphaned directory: drugresponseeval/results-34b5b1a8a7b9e49d59920ecf92a7d9c7c09b4d3c +2025-08-21T21:57:45.1299354Z 2025-08-21 21:57:45,003 - INFO - Processing: mag/results-61deef81c74b3c4c3bc0bce265e1d2e181d2260d +2025-08-21T21:57:45.1300186Z 2025-08-21 21:57:45,003 - INFO - DRY RUN: Would tag objects in mag/results-61deef81c74b3c4c3bc0bce265e1d2e181d2260d with {'pipeline': 'mag', 'release': '2.3.1', 'sha': '61deef81c74b3c4c3bc0bce265e1d2e181d2260d', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.003194', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1300538Z 2025-08-21 21:57:45,003 - INFO - āœ… Tagged current release: mag/results-61deef81c74b3c4c3bc0bce265e1d2e181d2260d +2025-08-21T21:57:45.1300918Z 2025-08-21 21:57:45,003 - INFO - Processing: proteinfold/results-9bea0dc4ebb26358142afbcab3d7efd962d3a820 +2025-08-21T21:57:45.1301837Z 2025-08-21 21:57:45,003 - INFO - DRY RUN: Would tag objects in proteinfold/results-9bea0dc4ebb26358142afbcab3d7efd962d3a820 with {'pipeline': 'proteinfold', 'release': '1.1.1', 'sha': '9bea0dc4ebb26358142afbcab3d7efd962d3a820', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.003277', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1302228Z 2025-08-21 21:57:45,003 - INFO - āœ… Tagged current release: proteinfold/results-9bea0dc4ebb26358142afbcab3d7efd962d3a820 +2025-08-21T21:57:45.1302473Z 2025-08-21 21:57:45,003 - INFO - Processing: ampliseq/results-1e76f1c0c6d270572573a6ad76aa40bfc185c3da +2025-08-21T21:57:45.1303332Z 2025-08-21 21:57:45,003 - INFO - DRY RUN: Would tag objects in ampliseq/results-1e76f1c0c6d270572573a6ad76aa40bfc185c3da with {'pipeline': 'ampliseq', 'release': '1.2.0', 'sha': '1e76f1c0c6d270572573a6ad76aa40bfc185c3da', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.003361', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1304135Z 2025-08-21 21:57:45,003 - INFO - āœ… Tagged current release: ampliseq/results-1e76f1c0c6d270572573a6ad76aa40bfc185c3da +2025-08-21T21:57:45.1304374Z 2025-08-21 21:57:45,003 - INFO - Processing: ampliseq/results-9162fe0d035f2b598646366608eb19be88ac5d72 +2025-08-21T21:57:45.1305198Z 2025-08-21 21:57:45,003 - INFO - DRY RUN: Would tag objects in ampliseq/results-9162fe0d035f2b598646366608eb19be88ac5d72 with {'pipeline': 'ampliseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.003445', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1305598Z 2025-08-21 21:57:45,003 - WARNING - šŸ—‘ļø Tagged orphaned directory: ampliseq/results-9162fe0d035f2b598646366608eb19be88ac5d72 +2025-08-21T21:57:45.1305841Z 2025-08-21 21:57:45,003 - INFO - Processing: airrflow/results-61e295421683bfcdfcba80f6bb4b034b9b0dfe20 +2025-08-21T21:57:45.1306573Z 2025-08-21 21:57:45,003 - INFO - DRY RUN: Would tag objects in airrflow/results-61e295421683bfcdfcba80f6bb4b034b9b0dfe20 with {'pipeline': 'airrflow', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.003547', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1306985Z 2025-08-21 21:57:45,003 - WARNING - šŸ—‘ļø Tagged orphaned directory: airrflow/results-61e295421683bfcdfcba80f6bb4b034b9b0dfe20 +2025-08-21T21:57:45.1307219Z 2025-08-21 21:57:45,003 - INFO - Processing: rnaseq/results-3bec2331cac2b5ff88a1dc71a21fab6529b57a0f +2025-08-21T21:57:45.1308082Z 2025-08-21 21:57:45,003 - INFO - DRY RUN: Would tag objects in rnaseq/results-3bec2331cac2b5ff88a1dc71a21fab6529b57a0f with {'pipeline': 'rnaseq', 'release': '3.12.0', 'sha': '3bec2331cac2b5ff88a1dc71a21fab6529b57a0f', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.003645', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1308443Z 2025-08-21 21:57:45,003 - INFO - āœ… Tagged current release: rnaseq/results-3bec2331cac2b5ff88a1dc71a21fab6529b57a0f +2025-08-21T21:57:45.1308692Z 2025-08-21 21:57:45,003 - INFO - Processing: airrflow/results-ee4391c0accaed97ca08729960c43fca0ddd4c8e +2025-08-21T21:57:45.1309425Z 2025-08-21 21:57:45,003 - INFO - DRY RUN: Would tag objects in airrflow/results-ee4391c0accaed97ca08729960c43fca0ddd4c8e with {'pipeline': 'airrflow', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.003732', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1309828Z 2025-08-21 21:57:45,003 - WARNING - šŸ—‘ļø Tagged orphaned directory: airrflow/results-ee4391c0accaed97ca08729960c43fca0ddd4c8e +2025-08-21T21:57:45.1310072Z 2025-08-21 21:57:45,003 - INFO - Processing: fastquorum/results-1df25801bdbd804e98815ab691618382735f00ef +2025-08-21T21:57:45.1310815Z 2025-08-21 21:57:45,003 - INFO - DRY RUN: Would tag objects in fastquorum/results-1df25801bdbd804e98815ab691618382735f00ef with {'pipeline': 'fastquorum', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.003828', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1311350Z 2025-08-21 21:57:45,003 - WARNING - šŸ—‘ļø Tagged orphaned directory: fastquorum/results-1df25801bdbd804e98815ab691618382735f00ef +2025-08-21T21:57:45.1311605Z 2025-08-21 21:57:45,003 - INFO - Processing: fetchngs/results-b774d8df22b8958acc78ee5de40f73aa9fba0def +2025-08-21T21:57:45.1312482Z 2025-08-21 21:57:45,003 - INFO - DRY RUN: Would tag objects in fetchngs/results-b774d8df22b8958acc78ee5de40f73aa9fba0def with {'pipeline': 'fetchngs', 'release': '1.10.1', 'sha': 'b774d8df22b8958acc78ee5de40f73aa9fba0def', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.003915', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1312857Z 2025-08-21 21:57:45,003 - INFO - āœ… Tagged current release: fetchngs/results-b774d8df22b8958acc78ee5de40f73aa9fba0def +2025-08-21T21:57:45.1313090Z 2025-08-21 21:57:45,003 - INFO - Processing: scrnaseq/results-06a85e8e543c006aec6720ee079a00f7085a1635 +2025-08-21T21:57:45.1313959Z 2025-08-21 21:57:45,004 - INFO - DRY RUN: Would tag objects in scrnaseq/results-06a85e8e543c006aec6720ee079a00f7085a1635 with {'pipeline': 'scrnaseq', 'release': '2.3.2', 'sha': '06a85e8e543c006aec6720ee079a00f7085a1635', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.004002', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1314436Z 2025-08-21 21:57:45,004 - INFO - āœ… Tagged current release: scrnaseq/results-06a85e8e543c006aec6720ee079a00f7085a1635 +2025-08-21T21:57:45.1314680Z 2025-08-21 21:57:45,004 - INFO - Processing: nascent/results-9ff33c78968717b2cee89d7b5be2b5110facf928 +2025-08-21T21:57:45.1315631Z 2025-08-21 21:57:45,004 - INFO - DRY RUN: Would tag objects in nascent/results-9ff33c78968717b2cee89d7b5be2b5110facf928 with {'pipeline': 'nascent', 'release': '2.1.1', 'sha': '9ff33c78968717b2cee89d7b5be2b5110facf928', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.004086', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1316001Z 2025-08-21 21:57:45,004 - INFO - āœ… Tagged current release: nascent/results-9ff33c78968717b2cee89d7b5be2b5110facf928 +2025-08-21T21:57:45.1316276Z 2025-08-21 21:57:45,004 - INFO - Processing: denovotranscript/results-cb8abd344196e27ec10044505509229830d7c2fc +2025-08-21T21:57:45.1317208Z 2025-08-21 21:57:45,004 - INFO - DRY RUN: Would tag objects in denovotranscript/results-cb8abd344196e27ec10044505509229830d7c2fc with {'pipeline': 'denovotranscript', 'release': '1.1.0', 'sha': 'cb8abd344196e27ec10044505509229830d7c2fc', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.004175', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1317605Z 2025-08-21 21:57:45,004 - INFO - āœ… Tagged current release: denovotranscript/results-cb8abd344196e27ec10044505509229830d7c2fc +2025-08-21T21:57:45.1317843Z 2025-08-21 21:57:45,004 - INFO - Processing: sarek/results-2934fcfa2add3295a8bf3abbfe5bb5519e237f2d +2025-08-21T21:57:45.1318552Z 2025-08-21 21:57:45,004 - INFO - DRY RUN: Would tag objects in sarek/results-2934fcfa2add3295a8bf3abbfe5bb5519e237f2d with {'pipeline': 'sarek', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.004268', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1318960Z 2025-08-21 21:57:45,004 - WARNING - šŸ—‘ļø Tagged orphaned directory: sarek/results-2934fcfa2add3295a8bf3abbfe5bb5519e237f2d +2025-08-21T21:57:45.1319211Z 2025-08-21 21:57:45,004 - INFO - Processing: createtaxdb/results-c67e935993f957401a3b1adfa48eb9585f47d855 +2025-08-21T21:57:45.1319962Z 2025-08-21 21:57:45,004 - INFO - DRY RUN: Would tag objects in createtaxdb/results-c67e935993f957401a3b1adfa48eb9585f47d855 with {'pipeline': 'createtaxdb', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.004358', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1320372Z 2025-08-21 21:57:45,004 - WARNING - šŸ—‘ļø Tagged orphaned directory: createtaxdb/results-c67e935993f957401a3b1adfa48eb9585f47d855 +2025-08-21T21:57:45.1320627Z 2025-08-21 21:57:45,004 - INFO - Processing: rnaseq/results-test-48fb9b4ea640f029f48c79283217d0f20661d38e +2025-08-21T21:57:45.1321466Z 2025-08-21 21:57:45,004 - INFO - DRY RUN: Would tag objects in rnaseq/results-test-48fb9b4ea640f029f48c79283217d0f20661d38e with {'pipeline': 'rnaseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.004445', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1321894Z 2025-08-21 21:57:45,004 - WARNING - šŸ—‘ļø Tagged orphaned directory: rnaseq/results-test-48fb9b4ea640f029f48c79283217d0f20661d38e +2025-08-21T21:57:45.1322144Z 2025-08-21 21:57:45,004 - INFO - Processing: sarek/results-test-59026dc07633edb83aab3bfb2f65f79db38437a1 +2025-08-21T21:57:45.1322872Z 2025-08-21 21:57:45,004 - INFO - DRY RUN: Would tag objects in sarek/results-test-59026dc07633edb83aab3bfb2f65f79db38437a1 with {'pipeline': 'sarek', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.004546', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1323280Z 2025-08-21 21:57:45,004 - WARNING - šŸ—‘ļø Tagged orphaned directory: sarek/results-test-59026dc07633edb83aab3bfb2f65f79db38437a1 +2025-08-21T21:57:45.1323530Z 2025-08-21 21:57:45,004 - INFO - Processing: ampliseq/results-717abb8a0372c1821f5837ab3a902be90faf4cba +2025-08-21T21:57:45.1324508Z 2025-08-21 21:57:45,004 - INFO - DRY RUN: Would tag objects in ampliseq/results-717abb8a0372c1821f5837ab3a902be90faf4cba with {'pipeline': 'ampliseq', 'release': '2.9.0', 'sha': '717abb8a0372c1821f5837ab3a902be90faf4cba', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.004633', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1324879Z 2025-08-21 21:57:45,004 - INFO - āœ… Tagged current release: ampliseq/results-717abb8a0372c1821f5837ab3a902be90faf4cba +2025-08-21T21:57:45.1325217Z 2025-08-21 21:57:45,004 - INFO - Processing: rnafusion/results-c3b0f9fb047a6c3c72e02a8b580995e6f975aa10 +2025-08-21T21:57:45.1326105Z 2025-08-21 21:57:45,004 - INFO - DRY RUN: Would tag objects in rnafusion/results-c3b0f9fb047a6c3c72e02a8b580995e6f975aa10 with {'pipeline': 'rnafusion', 'release': '2.4.0', 'sha': 'c3b0f9fb047a6c3c72e02a8b580995e6f975aa10', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.004725', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1326484Z 2025-08-21 21:57:45,004 - INFO - āœ… Tagged current release: rnafusion/results-c3b0f9fb047a6c3c72e02a8b580995e6f975aa10 +2025-08-21T21:57:45.1326727Z 2025-08-21 21:57:45,004 - INFO - Processing: airrflow/results-eb11e2e7e653e3353d3e3dbb687bb5d71b4990dc +2025-08-21T21:57:45.1327590Z 2025-08-21 21:57:45,004 - INFO - DRY RUN: Would tag objects in airrflow/results-eb11e2e7e653e3353d3e3dbb687bb5d71b4990dc with {'pipeline': 'airrflow', 'release': '4.3.1', 'sha': 'eb11e2e7e653e3353d3e3dbb687bb5d71b4990dc', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.004810', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1327956Z 2025-08-21 21:57:45,004 - INFO - āœ… Tagged current release: airrflow/results-eb11e2e7e653e3353d3e3dbb687bb5d71b4990dc +2025-08-21T21:57:45.1328183Z 2025-08-21 21:57:45,004 - INFO - Processing: sarek/results-e8f56e5bbb6f8a34793a6b5a2945981eb43090aa +2025-08-21T21:57:45.1329034Z 2025-08-21 21:57:45,004 - INFO - DRY RUN: Would tag objects in sarek/results-e8f56e5bbb6f8a34793a6b5a2945981eb43090aa with {'pipeline': 'sarek', 'release': '2.7.2', 'sha': 'e8f56e5bbb6f8a34793a6b5a2945981eb43090aa', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.004894', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1329393Z 2025-08-21 21:57:45,004 - INFO - āœ… Tagged current release: sarek/results-e8f56e5bbb6f8a34793a6b5a2945981eb43090aa +2025-08-21T21:57:45.1329637Z 2025-08-21 21:57:45,004 - INFO - Processing: ampliseq/results-9c52c22f17179b9bd5cb2621c05ec3a931adcb02 +2025-08-21T21:57:45.1330504Z 2025-08-21 21:57:45,004 - INFO - DRY RUN: Would tag objects in ampliseq/results-9c52c22f17179b9bd5cb2621c05ec3a931adcb02 with {'pipeline': 'ampliseq', 'release': '2.13.0', 'sha': '9c52c22f17179b9bd5cb2621c05ec3a931adcb02', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.004977', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1330868Z 2025-08-21 21:57:45,005 - INFO - āœ… Tagged current release: ampliseq/results-9c52c22f17179b9bd5cb2621c05ec3a931adcb02 +2025-08-21T21:57:45.1331218Z 2025-08-21 21:57:45,005 - INFO - Processing: sarek/results-1a263a2bac181199317217afc8d2fafba9c3e0df +2025-08-21T21:57:45.1332067Z 2025-08-21 21:57:45,005 - INFO - DRY RUN: Would tag objects in sarek/results-1a263a2bac181199317217afc8d2fafba9c3e0df with {'pipeline': 'sarek', 'release': '3.3.0', 'sha': '1a263a2bac181199317217afc8d2fafba9c3e0df', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.005061', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1332428Z 2025-08-21 21:57:45,005 - INFO - āœ… Tagged current release: sarek/results-1a263a2bac181199317217afc8d2fafba9c3e0df +2025-08-21T21:57:45.1332668Z 2025-08-21 21:57:45,005 - INFO - Processing: ampliseq/results-cf80e34cd14d3c3fcbc6f3388b9bd86d68f0a384 +2025-08-21T21:57:45.1333400Z 2025-08-21 21:57:45,005 - INFO - DRY RUN: Would tag objects in ampliseq/results-cf80e34cd14d3c3fcbc6f3388b9bd86d68f0a384 with {'pipeline': 'ampliseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.005145', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1333924Z 2025-08-21 21:57:45,005 - WARNING - šŸ—‘ļø Tagged orphaned directory: ampliseq/results-cf80e34cd14d3c3fcbc6f3388b9bd86d68f0a384 +2025-08-21T21:57:45.1334210Z 2025-08-21 21:57:45,005 - INFO - Processing: methylseq/results-a79d8519e9999aa87f301cdc601fe43f19a77442-bwameth-ARM +2025-08-21T21:57:45.1335085Z 2025-08-21 21:57:45,005 - INFO - DRY RUN: Would tag objects in methylseq/results-a79d8519e9999aa87f301cdc601fe43f19a77442-bwameth-ARM with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.005233', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1335556Z 2025-08-21 21:57:45,005 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-a79d8519e9999aa87f301cdc601fe43f19a77442-bwameth-ARM +2025-08-21T21:57:45.1335784Z 2025-08-21 21:57:45,005 - INFO - Processing: mag/results-7bd5dc6007aa15beb63ec827f50bc0e982beb8e2 +2025-08-21T21:57:45.1336625Z 2025-08-21 21:57:45,005 - INFO - DRY RUN: Would tag objects in mag/results-7bd5dc6007aa15beb63ec827f50bc0e982beb8e2 with {'pipeline': 'mag', 'release': '2.5.3', 'sha': '7bd5dc6007aa15beb63ec827f50bc0e982beb8e2', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.005320', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1336985Z 2025-08-21 21:57:45,005 - INFO - āœ… Tagged current release: mag/results-7bd5dc6007aa15beb63ec827f50bc0e982beb8e2 +2025-08-21T21:57:45.1337214Z 2025-08-21 21:57:45,005 - INFO - Processing: sarek/results-6ec8c1c945fb132adf152e196053bd7f72f1dfdc +2025-08-21T21:57:45.1338059Z 2025-08-21 21:57:45,005 - INFO - DRY RUN: Would tag objects in sarek/results-6ec8c1c945fb132adf152e196053bd7f72f1dfdc with {'pipeline': 'sarek', 'release': '3.2.2', 'sha': '6ec8c1c945fb132adf152e196053bd7f72f1dfdc', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.005404', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1338417Z 2025-08-21 21:57:45,005 - INFO - āœ… Tagged current release: sarek/results-6ec8c1c945fb132adf152e196053bd7f72f1dfdc +2025-08-21T21:57:45.1338680Z 2025-08-21 21:57:45,005 - INFO - Processing: oncoanalyser/results-d1218d24a165a233fd5e3abfe91ace80b634def2 +2025-08-21T21:57:45.1339587Z 2025-08-21 21:57:45,005 - INFO - DRY RUN: Would tag objects in oncoanalyser/results-d1218d24a165a233fd5e3abfe91ace80b634def2 with {'pipeline': 'oncoanalyser', 'release': '2.0.0', 'sha': 'd1218d24a165a233fd5e3abfe91ace80b634def2', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.005488', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1339970Z 2025-08-21 21:57:45,005 - INFO - āœ… Tagged current release: oncoanalyser/results-d1218d24a165a233fd5e3abfe91ace80b634def2 +2025-08-21T21:57:45.1340217Z 2025-08-21 21:57:45,005 - INFO - Processing: methylong/results-45644d7550e1fe91ba84f88ffe0b4768c7d7bc98 +2025-08-21T21:57:45.1341079Z 2025-08-21 21:57:45,005 - INFO - DRY RUN: Would tag objects in methylong/results-45644d7550e1fe91ba84f88ffe0b4768c7d7bc98 with {'pipeline': 'methylong', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.005590', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1341502Z 2025-08-21 21:57:45,005 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylong/results-45644d7550e1fe91ba84f88ffe0b4768c7d7bc98 +2025-08-21T21:57:45.1341729Z 2025-08-21 21:57:45,005 - INFO - Processing: sarek/results-575c707e49e1ede524bdf0994806e274e792bb99 +2025-08-21T21:57:45.1342429Z 2025-08-21 21:57:45,005 - INFO - DRY RUN: Would tag objects in sarek/results-575c707e49e1ede524bdf0994806e274e792bb99 with {'pipeline': 'sarek', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.005677', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1342814Z 2025-08-21 21:57:45,005 - WARNING - šŸ—‘ļø Tagged orphaned directory: sarek/results-575c707e49e1ede524bdf0994806e274e792bb99 +2025-08-21T21:57:45.1343089Z 2025-08-21 21:57:45,005 - INFO - Processing: genomeassembler/results-ccf1b89898cb720f46a966029c3a60dbcc25b012 +2025-08-21T21:57:45.1344019Z 2025-08-21 21:57:45,005 - INFO - DRY RUN: Would tag objects in genomeassembler/results-ccf1b89898cb720f46a966029c3a60dbcc25b012 with {'pipeline': 'genomeassembler', 'release': '1.1.0', 'sha': 'ccf1b89898cb720f46a966029c3a60dbcc25b012', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.005765', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1344610Z 2025-08-21 21:57:45,005 - INFO - āœ… Tagged current release: genomeassembler/results-ccf1b89898cb720f46a966029c3a60dbcc25b012 +2025-08-21T21:57:45.1344875Z 2025-08-21 21:57:45,005 - INFO - Processing: testpipeline/results-8ecccce663d32ed6f415bcbfbfb5a20f9401b6ee +2025-08-21T21:57:45.1345896Z 2025-08-21 21:57:45,005 - INFO - DRY RUN: Would tag objects in testpipeline/results-8ecccce663d32ed6f415bcbfbfb5a20f9401b6ee with {'pipeline': 'testpipeline', 'release': 'v0.1.5', 'sha': '8ecccce663d32ed6f415bcbfbfb5a20f9401b6ee', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.005852', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1346300Z 2025-08-21 21:57:45,005 - INFO - āœ… Tagged current release: testpipeline/results-8ecccce663d32ed6f415bcbfbfb5a20f9401b6ee +2025-08-21T21:57:45.1346554Z 2025-08-21 21:57:45,005 - INFO - Processing: viralrecon/results-f0171324a60d1759ca7f5d02351372d97d22cc12 +2025-08-21T21:57:45.1347423Z 2025-08-21 21:57:45,005 - INFO - DRY RUN: Would tag objects in viralrecon/results-f0171324a60d1759ca7f5d02351372d97d22cc12 with {'pipeline': 'viralrecon', 'release': '2.1', 'sha': 'f0171324a60d1759ca7f5d02351372d97d22cc12', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.005934', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1347796Z 2025-08-21 21:57:45,005 - INFO - āœ… Tagged current release: viralrecon/results-f0171324a60d1759ca7f5d02351372d97d22cc12 +2025-08-21T21:57:45.1348025Z 2025-08-21 21:57:45,005 - INFO - Processing: mag/results-8392af99b1addcc911bddd19da2179ed13e6253c +2025-08-21T21:57:45.1348718Z 2025-08-21 21:57:45,006 - INFO - DRY RUN: Would tag objects in mag/results-8392af99b1addcc911bddd19da2179ed13e6253c with {'pipeline': 'mag', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.006017', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1349104Z 2025-08-21 21:57:45,006 - WARNING - šŸ—‘ļø Tagged orphaned directory: mag/results-8392af99b1addcc911bddd19da2179ed13e6253c +2025-08-21T21:57:45.1349347Z 2025-08-21 21:57:45,006 - INFO - Processing: ampliseq/results-70b23f4710094df9299e5ab2d18a1d412bbd4d04 +2025-08-21T21:57:45.1350209Z 2025-08-21 21:57:45,006 - INFO - DRY RUN: Would tag objects in ampliseq/results-70b23f4710094df9299e5ab2d18a1d412bbd4d04 with {'pipeline': 'ampliseq', 'release': '1.1.3', 'sha': '70b23f4710094df9299e5ab2d18a1d412bbd4d04', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.006103', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1350574Z 2025-08-21 21:57:45,006 - INFO - āœ… Tagged current release: ampliseq/results-70b23f4710094df9299e5ab2d18a1d412bbd4d04 +2025-08-21T21:57:45.1350980Z 2025-08-21 21:57:45,006 - INFO - Processing: methylseq/results-fd056660f7680072e86ef1d7bd0ac903a377c53e-bwameth-ARM +2025-08-21T21:57:45.1351776Z 2025-08-21 21:57:45,006 - INFO - DRY RUN: Would tag objects in methylseq/results-fd056660f7680072e86ef1d7bd0ac903a377c53e-bwameth-ARM with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.006188', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1352239Z 2025-08-21 21:57:45,006 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-fd056660f7680072e86ef1d7bd0ac903a377c53e-bwameth-ARM +2025-08-21T21:57:45.1352471Z 2025-08-21 21:57:45,006 - INFO - Processing: eager/results-29b6e147bd9a848f84e6d26706af7f652f2165ca +2025-08-21T21:57:45.1353306Z 2025-08-21 21:57:45,006 - INFO - DRY RUN: Would tag objects in eager/results-29b6e147bd9a848f84e6d26706af7f652f2165ca with {'pipeline': 'eager', 'release': '2.3.1', 'sha': '29b6e147bd9a848f84e6d26706af7f652f2165ca', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.006276', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1353781Z 2025-08-21 21:57:45,006 - INFO - āœ… Tagged current release: eager/results-29b6e147bd9a848f84e6d26706af7f652f2165ca +2025-08-21T21:57:45.1354036Z 2025-08-21 21:57:45,006 - INFO - Processing: taxprofiler/results-3d4eda2dbb9d05a8f8b7f3cde4ed6e479189d8fa +2025-08-21T21:57:45.1354942Z 2025-08-21 21:57:45,006 - INFO - DRY RUN: Would tag objects in taxprofiler/results-3d4eda2dbb9d05a8f8b7f3cde4ed6e479189d8fa with {'pipeline': 'taxprofiler', 'release': '1.1.2', 'sha': '3d4eda2dbb9d05a8f8b7f3cde4ed6e479189d8fa', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.006360', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1355424Z 2025-08-21 21:57:45,006 - INFO - āœ… Tagged current release: taxprofiler/results-3d4eda2dbb9d05a8f8b7f3cde4ed6e479189d8fa +2025-08-21T21:57:45.1355574Z 2025-08-21 21:57:45,006 - INFO - Processing: scrnaseq/results-dev +2025-08-21T21:57:45.1356163Z 2025-08-21 21:57:45,006 - INFO - DRY RUN: Would tag objects in scrnaseq/results-dev with {'pipeline': 'scrnaseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.006444', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1356433Z 2025-08-21 21:57:45,006 - WARNING - šŸ—‘ļø Tagged orphaned directory: scrnaseq/results-dev +2025-08-21T21:57:45.1356678Z 2025-08-21 21:57:45,006 - INFO - Processing: methylseq/results-4415e90a60faba40ccefd4c847666d28688a86ee +2025-08-21T21:57:45.1357561Z 2025-08-21 21:57:45,006 - INFO - DRY RUN: Would tag objects in methylseq/results-4415e90a60faba40ccefd4c847666d28688a86ee with {'pipeline': 'methylseq', 'release': '3.0.0', 'sha': '4415e90a60faba40ccefd4c847666d28688a86ee', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.006543', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1357929Z 2025-08-21 21:57:45,006 - INFO - āœ… Tagged current release: methylseq/results-4415e90a60faba40ccefd4c847666d28688a86ee +2025-08-21T21:57:45.1358167Z 2025-08-21 21:57:45,006 - INFO - Processing: bacass/results-be9c064f571ada41692f9e98f99474f16bf5c04b +2025-08-21T21:57:45.1359021Z 2025-08-21 21:57:45,006 - INFO - DRY RUN: Would tag objects in bacass/results-be9c064f571ada41692f9e98f99474f16bf5c04b with {'pipeline': 'bacass', 'release': '2.4.0', 'sha': 'be9c064f571ada41692f9e98f99474f16bf5c04b', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.006628', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1359386Z 2025-08-21 21:57:45,006 - INFO - āœ… Tagged current release: bacass/results-be9c064f571ada41692f9e98f99474f16bf5c04b +2025-08-21T21:57:45.1359636Z 2025-08-21 21:57:45,006 - INFO - Processing: phaseimpute/results-ac730dc42d5b967f18c3f10900db7378bbd0fd9a +2025-08-21T21:57:45.1360533Z 2025-08-21 21:57:45,006 - INFO - DRY RUN: Would tag objects in phaseimpute/results-ac730dc42d5b967f18c3f10900db7378bbd0fd9a with {'pipeline': 'phaseimpute', 'release': '1.0.0', 'sha': 'ac730dc42d5b967f18c3f10900db7378bbd0fd9a', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.006723', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1361029Z 2025-08-21 21:57:45,006 - INFO - āœ… Tagged current release: phaseimpute/results-ac730dc42d5b967f18c3f10900db7378bbd0fd9a +2025-08-21T21:57:45.1361289Z 2025-08-21 21:57:45,006 - INFO - Processing: crisprseq/results-a797392406f9afec4e41fcc06bed0825f95e6bec +2025-08-21T21:57:45.1362162Z 2025-08-21 21:57:45,006 - INFO - DRY RUN: Would tag objects in crisprseq/results-a797392406f9afec4e41fcc06bed0825f95e6bec with {'pipeline': 'crisprseq', 'release': '2.0.0', 'sha': 'a797392406f9afec4e41fcc06bed0825f95e6bec', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.006808', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1362542Z 2025-08-21 21:57:45,006 - INFO - āœ… Tagged current release: crisprseq/results-a797392406f9afec4e41fcc06bed0825f95e6bec +2025-08-21T21:57:45.1362781Z 2025-08-21 21:57:45,006 - INFO - Processing: demultiplex/results-67b846577346a9267e1f1292c0159cdf002e2186 +2025-08-21T21:57:45.1363666Z 2025-08-21 21:57:45,006 - INFO - DRY RUN: Would tag objects in demultiplex/results-67b846577346a9267e1f1292c0159cdf002e2186 with {'pipeline': 'demultiplex', 'release': '1.3.2', 'sha': '67b846577346a9267e1f1292c0159cdf002e2186', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.006893', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1364151Z 2025-08-21 21:57:45,006 - INFO - āœ… Tagged current release: demultiplex/results-67b846577346a9267e1f1292c0159cdf002e2186 +2025-08-21T21:57:45.1364382Z 2025-08-21 21:57:45,006 - INFO - Processing: mag/results-7ffd8b8c65b5c41534d8d7daf1cf8b23d92c8f22 +2025-08-21T21:57:45.1365314Z 2025-08-21 21:57:45,006 - INFO - DRY RUN: Would tag objects in mag/results-7ffd8b8c65b5c41534d8d7daf1cf8b23d92c8f22 with {'pipeline': 'mag', 'release': '4.0.0', 'sha': '7ffd8b8c65b5c41534d8d7daf1cf8b23d92c8f22', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.006977', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1365674Z 2025-08-21 21:57:45,007 - INFO - āœ… Tagged current release: mag/results-7ffd8b8c65b5c41534d8d7daf1cf8b23d92c8f22 +2025-08-21T21:57:45.1365916Z 2025-08-21 21:57:45,007 - INFO - Processing: rnaseq/results-a7e73a0e96e59dca95c126a6d828a65347dff9fb +2025-08-21T21:57:45.1366640Z 2025-08-21 21:57:45,007 - INFO - DRY RUN: Would tag objects in rnaseq/results-a7e73a0e96e59dca95c126a6d828a65347dff9fb with {'pipeline': 'rnaseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.007063', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1367033Z 2025-08-21 21:57:45,007 - WARNING - šŸ—‘ļø Tagged orphaned directory: rnaseq/results-a7e73a0e96e59dca95c126a6d828a65347dff9fb +2025-08-21T21:57:45.1367275Z 2025-08-21 21:57:45,007 - INFO - Processing: ampliseq/results-55d72f40502b200fc39c09c358b26c58a93a9169 +2025-08-21T21:57:45.1367992Z 2025-08-21 21:57:45,007 - INFO - DRY RUN: Would tag objects in ampliseq/results-55d72f40502b200fc39c09c358b26c58a93a9169 with {'pipeline': 'ampliseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.007150', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1368398Z 2025-08-21 21:57:45,007 - WARNING - šŸ—‘ļø Tagged orphaned directory: ampliseq/results-55d72f40502b200fc39c09c358b26c58a93a9169 +2025-08-21T21:57:45.1368646Z 2025-08-21 21:57:45,007 - INFO - Processing: ampliseq/results-9ac22bac93ffdf859da6bda751112ec0932892eb +2025-08-21T21:57:45.1369521Z 2025-08-21 21:57:45,007 - INFO - DRY RUN: Would tag objects in ampliseq/results-9ac22bac93ffdf859da6bda751112ec0932892eb with {'pipeline': 'ampliseq', 'release': '2.6.0', 'sha': '9ac22bac93ffdf859da6bda751112ec0932892eb', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.007235', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1369889Z 2025-08-21 21:57:45,007 - INFO - āœ… Tagged current release: ampliseq/results-9ac22bac93ffdf859da6bda751112ec0932892eb +2025-08-21T21:57:45.1370148Z 2025-08-21 21:57:45,007 - INFO - Processing: callingcards/results-20b66e785a822028eaa125583aad0747d55bba61 +2025-08-21T21:57:45.1371163Z 2025-08-21 21:57:45,007 - INFO - DRY RUN: Would tag objects in callingcards/results-20b66e785a822028eaa125583aad0747d55bba61 with {'pipeline': 'callingcards', 'release': '1.0.0', 'sha': '20b66e785a822028eaa125583aad0747d55bba61', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.007321', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1371559Z 2025-08-21 21:57:45,007 - INFO - āœ… Tagged current release: callingcards/results-20b66e785a822028eaa125583aad0747d55bba61 +2025-08-21T21:57:45.1371809Z 2025-08-21 21:57:45,007 - INFO - Processing: demultiplex/results-8709f05c1af86ddc12f86aaf108fa77935af1a96 +2025-08-21T21:57:45.1372699Z 2025-08-21 21:57:45,007 - INFO - DRY RUN: Would tag objects in demultiplex/results-8709f05c1af86ddc12f86aaf108fa77935af1a96 with {'pipeline': 'demultiplex', 'release': '1.3.0', 'sha': '8709f05c1af86ddc12f86aaf108fa77935af1a96', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.007404', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1373073Z 2025-08-21 21:57:45,007 - INFO - āœ… Tagged current release: demultiplex/results-8709f05c1af86ddc12f86aaf108fa77935af1a96 +2025-08-21T21:57:45.1373329Z 2025-08-21 21:57:45,007 - INFO - Processing: methylong/results-8f1e613ead272c0c62dcf44c1c44538a6c546e1d +2025-08-21T21:57:45.1374176Z 2025-08-21 21:57:45,007 - INFO - DRY RUN: Would tag objects in methylong/results-8f1e613ead272c0c62dcf44c1c44538a6c546e1d with {'pipeline': 'methylong', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.007489', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1374591Z 2025-08-21 21:57:45,007 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylong/results-8f1e613ead272c0c62dcf44c1c44538a6c546e1d +2025-08-21T21:57:45.1374837Z 2025-08-21 21:57:45,007 - INFO - Processing: ampliseq/results-aed35e5b4bad907ed2bdf6587efb82ad2578e6b1 +2025-08-21T21:57:45.1375829Z 2025-08-21 21:57:45,007 - INFO - DRY RUN: Would tag objects in ampliseq/results-aed35e5b4bad907ed2bdf6587efb82ad2578e6b1 with {'pipeline': 'ampliseq', 'release': '2.3.2', 'sha': 'aed35e5b4bad907ed2bdf6587efb82ad2578e6b1', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.007598', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1376213Z 2025-08-21 21:57:45,007 - INFO - āœ… Tagged current release: ampliseq/results-aed35e5b4bad907ed2bdf6587efb82ad2578e6b1 +2025-08-21T21:57:45.1376512Z 2025-08-21 21:57:45,007 - INFO - Processing: multiplesequencealign/results-de24fb11e5ff385193c77bd1a0e2bcc9922975ac +2025-08-21T21:57:45.1377489Z 2025-08-21 21:57:45,007 - INFO - DRY RUN: Would tag objects in multiplesequencealign/results-de24fb11e5ff385193c77bd1a0e2bcc9922975ac with {'pipeline': 'multiplesequencealign', 'release': '1.1.0', 'sha': 'de24fb11e5ff385193c77bd1a0e2bcc9922975ac', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.007684', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1377924Z 2025-08-21 21:57:45,007 - INFO - āœ… Tagged current release: multiplesequencealign/results-de24fb11e5ff385193c77bd1a0e2bcc9922975ac +2025-08-21T21:57:45.1378168Z 2025-08-21 21:57:45,007 - INFO - Processing: rnafusion/results-f5ecf8dbd593fd844ff6648e3727332ce26cc20d +2025-08-21T21:57:45.1379070Z 2025-08-21 21:57:45,007 - INFO - DRY RUN: Would tag objects in rnafusion/results-f5ecf8dbd593fd844ff6648e3727332ce26cc20d with {'pipeline': 'rnafusion', 'release': '3.0.0', 'sha': 'f5ecf8dbd593fd844ff6648e3727332ce26cc20d', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.007769', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1379437Z 2025-08-21 21:57:45,007 - INFO - āœ… Tagged current release: rnafusion/results-f5ecf8dbd593fd844ff6648e3727332ce26cc20d +2025-08-21T21:57:45.1379672Z 2025-08-21 21:57:45,007 - INFO - Processing: rnaseq/results-4e34945f6ca86621a08e7d573cd6b4fbb7fb1f0e +2025-08-21T21:57:45.1380522Z 2025-08-21 21:57:45,007 - INFO - DRY RUN: Would tag objects in rnaseq/results-4e34945f6ca86621a08e7d573cd6b4fbb7fb1f0e with {'pipeline': 'rnaseq', 'release': '3.15.0', 'sha': '4e34945f6ca86621a08e7d573cd6b4fbb7fb1f0e', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.007855', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1381008Z 2025-08-21 21:57:45,007 - INFO - āœ… Tagged current release: rnaseq/results-4e34945f6ca86621a08e7d573cd6b4fbb7fb1f0e +2025-08-21T21:57:45.1381257Z 2025-08-21 21:57:45,007 - INFO - Processing: airrflow/results-5c9a30bd35565b08d998a2feab02e4a1ccf84d8a +2025-08-21T21:57:45.1382129Z 2025-08-21 21:57:45,007 - INFO - DRY RUN: Would tag objects in airrflow/results-5c9a30bd35565b08d998a2feab02e4a1ccf84d8a with {'pipeline': 'airrflow', 'release': '3.3.0', 'sha': '5c9a30bd35565b08d998a2feab02e4a1ccf84d8a', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.007939', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1382495Z 2025-08-21 21:57:45,007 - INFO - āœ… Tagged current release: airrflow/results-5c9a30bd35565b08d998a2feab02e4a1ccf84d8a +2025-08-21T21:57:45.1382725Z 2025-08-21 21:57:45,007 - INFO - Processing: bacass/results-9f368d48575dd16794fa04f099262b83d33d8739 +2025-08-21T21:57:45.1383566Z 2025-08-21 21:57:45,008 - INFO - DRY RUN: Would tag objects in bacass/results-9f368d48575dd16794fa04f099262b83d33d8739 with {'pipeline': 'bacass', 'release': '2.2.0', 'sha': '9f368d48575dd16794fa04f099262b83d33d8739', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.008022', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1384036Z 2025-08-21 21:57:45,008 - INFO - āœ… Tagged current release: bacass/results-9f368d48575dd16794fa04f099262b83d33d8739 +2025-08-21T21:57:45.1384304Z 2025-08-21 21:57:45,008 - INFO - Processing: proteinfamilies/results-f2dab99978a0737d0731fbd0de702b2172ba8253 +2025-08-21T21:57:45.1385190Z 2025-08-21 21:57:45,008 - INFO - DRY RUN: Would tag objects in proteinfamilies/results-f2dab99978a0737d0731fbd0de702b2172ba8253 with {'pipeline': 'proteinfamilies', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.008112', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1385630Z 2025-08-21 21:57:45,008 - WARNING - šŸ—‘ļø Tagged orphaned directory: proteinfamilies/results-f2dab99978a0737d0731fbd0de702b2172ba8253 +2025-08-21T21:57:45.1385875Z 2025-08-21 21:57:45,008 - INFO - Processing: mag/results-0b4f0ef116481a346e3e5ffebafb811872db2ba9 +2025-08-21T21:57:45.1386714Z 2025-08-21 21:57:45,008 - INFO - DRY RUN: Would tag objects in mag/results-0b4f0ef116481a346e3e5ffebafb811872db2ba9 with {'pipeline': 'mag', 'release': '2.0.0', 'sha': '0b4f0ef116481a346e3e5ffebafb811872db2ba9', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.008200', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1387065Z 2025-08-21 21:57:45,008 - INFO - āœ… Tagged current release: mag/results-0b4f0ef116481a346e3e5ffebafb811872db2ba9 +2025-08-21T21:57:45.1387325Z 2025-08-21 21:57:45,008 - INFO - Processing: scdownstream/results-8e13eabb49deaea3aa998a1406b15dc51227df9b +2025-08-21T21:57:45.1388092Z 2025-08-21 21:57:45,008 - INFO - DRY RUN: Would tag objects in scdownstream/results-8e13eabb49deaea3aa998a1406b15dc51227df9b with {'pipeline': 'scdownstream', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.008285', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1388518Z 2025-08-21 21:57:45,008 - WARNING - šŸ—‘ļø Tagged orphaned directory: scdownstream/results-8e13eabb49deaea3aa998a1406b15dc51227df9b +2025-08-21T21:57:45.1388778Z 2025-08-21 21:57:45,008 - INFO - Processing: viralrecon/results-75a2f9763e9b4c1aa20ad342ae3ce148c33cc65a +2025-08-21T21:57:45.1389663Z 2025-08-21 21:57:45,008 - INFO - DRY RUN: Would tag objects in viralrecon/results-75a2f9763e9b4c1aa20ad342ae3ce148c33cc65a with {'pipeline': 'viralrecon', 'release': '1.1.0', 'sha': '75a2f9763e9b4c1aa20ad342ae3ce148c33cc65a', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.008374', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1390039Z 2025-08-21 21:57:45,008 - INFO - āœ… Tagged current release: viralrecon/results-75a2f9763e9b4c1aa20ad342ae3ce148c33cc65a +2025-08-21T21:57:45.1390281Z 2025-08-21 21:57:45,008 - INFO - Processing: pixelator/results-1cde7e8a47d7af6c2198ded58d751f311ee1dccf +2025-08-21T21:57:45.1391293Z 2025-08-21 21:57:45,008 - INFO - DRY RUN: Would tag objects in pixelator/results-1cde7e8a47d7af6c2198ded58d751f311ee1dccf with {'pipeline': 'pixelator', 'release': '1.0.0', 'sha': '1cde7e8a47d7af6c2198ded58d751f311ee1dccf', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.008457', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1391679Z 2025-08-21 21:57:45,008 - INFO - āœ… Tagged current release: pixelator/results-1cde7e8a47d7af6c2198ded58d751f311ee1dccf +2025-08-21T21:57:45.1391924Z 2025-08-21 21:57:45,008 - INFO - Processing: ampliseq/results-680a7a15ba7cc9c850e2d3eeb99c886e45d72c7d +2025-08-21T21:57:45.1392793Z 2025-08-21 21:57:45,008 - INFO - DRY RUN: Would tag objects in ampliseq/results-680a7a15ba7cc9c850e2d3eeb99c886e45d72c7d with {'pipeline': 'ampliseq', 'release': '2.3.0', 'sha': '680a7a15ba7cc9c850e2d3eeb99c886e45d72c7d', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.008557', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1393162Z 2025-08-21 21:57:45,008 - INFO - āœ… Tagged current release: ampliseq/results-680a7a15ba7cc9c850e2d3eeb99c886e45d72c7d +2025-08-21T21:57:45.1393572Z 2025-08-21 21:57:45,008 - INFO - Processing: methylseq/results-a79d8519e9999aa87f301cdc601fe43f19a77442-bwameth-CPU +2025-08-21T21:57:45.1394350Z 2025-08-21 21:57:45,008 - INFO - DRY RUN: Would tag objects in methylseq/results-a79d8519e9999aa87f301cdc601fe43f19a77442-bwameth-CPU with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.008643', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1394814Z 2025-08-21 21:57:45,008 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-a79d8519e9999aa87f301cdc601fe43f19a77442-bwameth-CPU +2025-08-21T21:57:45.1395155Z 2025-08-21 21:57:45,008 - INFO - Processing: nanoseq/results-a93c84624e59ed07062c334afa9bc03aebfe4737 +2025-08-21T21:57:45.1396025Z 2025-08-21 21:57:45,008 - INFO - DRY RUN: Would tag objects in nanoseq/results-a93c84624e59ed07062c334afa9bc03aebfe4737 with {'pipeline': 'nanoseq', 'release': '2.0.1', 'sha': 'a93c84624e59ed07062c334afa9bc03aebfe4737', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.008730', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1396403Z 2025-08-21 21:57:45,008 - INFO - āœ… Tagged current release: nanoseq/results-a93c84624e59ed07062c334afa9bc03aebfe4737 +2025-08-21T21:57:45.1396637Z 2025-08-21 21:57:45,008 - INFO - Processing: funcscan/results-7105f4a398a4b07207432d9e572a41babdcbcc21 +2025-08-21T21:57:45.1397503Z 2025-08-21 21:57:45,008 - INFO - DRY RUN: Would tag objects in funcscan/results-7105f4a398a4b07207432d9e572a41babdcbcc21 with {'pipeline': 'funcscan', 'release': '1.1.2', 'sha': '7105f4a398a4b07207432d9e572a41babdcbcc21', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.008815', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1397859Z 2025-08-21 21:57:45,008 - INFO - āœ… Tagged current release: funcscan/results-7105f4a398a4b07207432d9e572a41babdcbcc21 +2025-08-21T21:57:45.1398122Z 2025-08-21 21:57:45,008 - INFO - Processing: proteomicslfq/results-43c77e50c955d7e62899e7d31e0d6f6a87ac2316 +2025-08-21T21:57:45.1399027Z 2025-08-21 21:57:45,008 - INFO - DRY RUN: Would tag objects in proteomicslfq/results-43c77e50c955d7e62899e7d31e0d6f6a87ac2316 with {'pipeline': 'proteomicslfq', 'release': '1.0.0', 'sha': '43c77e50c955d7e62899e7d31e0d6f6a87ac2316', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.008901', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1399430Z 2025-08-21 21:57:45,008 - INFO - āœ… Tagged current release: proteomicslfq/results-43c77e50c955d7e62899e7d31e0d6f6a87ac2316 +2025-08-21T21:57:45.1399710Z 2025-08-21 21:57:45,008 - INFO - Processing: epitopeprediction/results-b0f0d7a5b3cd352e548901e4cc19937c73add465 +2025-08-21T21:57:45.1400656Z 2025-08-21 21:57:45,008 - INFO - DRY RUN: Would tag objects in epitopeprediction/results-b0f0d7a5b3cd352e548901e4cc19937c73add465 with {'pipeline': 'epitopeprediction', 'release': '2.2.1', 'sha': 'b0f0d7a5b3cd352e548901e4cc19937c73add465', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.008985', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1401185Z 2025-08-21 21:57:45,009 - INFO - āœ… Tagged current release: epitopeprediction/results-b0f0d7a5b3cd352e548901e4cc19937c73add465 +2025-08-21T21:57:45.1401484Z 2025-08-21 21:57:45,009 - INFO - Processing: methylseq/results-fd056660f7680072e86ef1d7bd0ac903a377c53e-bwameth-GPU +2025-08-21T21:57:45.1402262Z 2025-08-21 21:57:45,009 - INFO - DRY RUN: Would tag objects in methylseq/results-fd056660f7680072e86ef1d7bd0ac903a377c53e-bwameth-GPU with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.009070', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1402729Z 2025-08-21 21:57:45,009 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-fd056660f7680072e86ef1d7bd0ac903a377c53e-bwameth-GPU +2025-08-21T21:57:45.1402962Z 2025-08-21 21:57:45,009 - INFO - Processing: eager/results-bb32ae3b0110b9a26b791f73a5324828d849271a +2025-08-21T21:57:45.1403806Z 2025-08-21 21:57:45,009 - INFO - DRY RUN: Would tag objects in eager/results-bb32ae3b0110b9a26b791f73a5324828d849271a with {'pipeline': 'eager', 'release': '2.4.6', 'sha': 'bb32ae3b0110b9a26b791f73a5324828d849271a', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.009157', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1404270Z 2025-08-21 21:57:45,009 - INFO - āœ… Tagged current release: eager/results-bb32ae3b0110b9a26b791f73a5324828d849271a +2025-08-21T21:57:45.1404529Z 2025-08-21 21:57:45,009 - INFO - Processing: createtaxdb/results-08be5d25eb97f40f32a232e3ae12ef0d7f6c7fe5 +2025-08-21T21:57:45.1405635Z 2025-08-21 21:57:45,009 - INFO - DRY RUN: Would tag objects in createtaxdb/results-08be5d25eb97f40f32a232e3ae12ef0d7f6c7fe5 with {'pipeline': 'createtaxdb', 'release': '1.0.0', 'sha': '08be5d25eb97f40f32a232e3ae12ef0d7f6c7fe5', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.009242', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1406029Z 2025-08-21 21:57:45,009 - INFO - āœ… Tagged current release: createtaxdb/results-08be5d25eb97f40f32a232e3ae12ef0d7f6c7fe5 +2025-08-21T21:57:45.1406294Z 2025-08-21 21:57:45,009 - INFO - Processing: demultiplex/results-7c2040c5b999eff5a945fe8136a51b597a64ca2f +2025-08-21T21:57:45.1407195Z 2025-08-21 21:57:45,009 - INFO - DRY RUN: Would tag objects in demultiplex/results-7c2040c5b999eff5a945fe8136a51b597a64ca2f with {'pipeline': 'demultiplex', 'release': '1.6.0', 'sha': '7c2040c5b999eff5a945fe8136a51b597a64ca2f', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.009325', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1407574Z 2025-08-21 21:57:45,009 - INFO - āœ… Tagged current release: demultiplex/results-7c2040c5b999eff5a945fe8136a51b597a64ca2f +2025-08-21T21:57:45.1407798Z 2025-08-21 21:57:45,009 - INFO - Processing: mag/results-a3122b1743bc483f04f33eff846dab2f2460e62c +2025-08-21T21:57:45.1408627Z 2025-08-21 21:57:45,009 - INFO - DRY RUN: Would tag objects in mag/results-a3122b1743bc483f04f33eff846dab2f2460e62c with {'pipeline': 'mag', 'release': '1.1.1', 'sha': 'a3122b1743bc483f04f33eff846dab2f2460e62c', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.009409', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1408976Z 2025-08-21 21:57:45,009 - INFO - āœ… Tagged current release: mag/results-a3122b1743bc483f04f33eff846dab2f2460e62c +2025-08-21T21:57:45.1409214Z 2025-08-21 21:57:45,009 - INFO - Processing: airrflow/results-5e30384d64921cc721edff43ed0f24d6c74566ef +2025-08-21T21:57:45.1410074Z 2025-08-21 21:57:45,009 - INFO - DRY RUN: Would tag objects in airrflow/results-5e30384d64921cc721edff43ed0f24d6c74566ef with {'pipeline': 'airrflow', 'release': '2.2.0', 'sha': '5e30384d64921cc721edff43ed0f24d6c74566ef', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.009512', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1410439Z 2025-08-21 21:57:45,009 - INFO - āœ… Tagged current release: airrflow/results-5e30384d64921cc721edff43ed0f24d6c74566ef +2025-08-21T21:57:45.1410657Z 2025-08-21 21:57:45,009 - INFO - Processing: hic/results-ac74763a91961ef7b274a651608c76be05be15e4 +2025-08-21T21:57:45.1411616Z 2025-08-21 21:57:45,009 - INFO - DRY RUN: Would tag objects in hic/results-ac74763a91961ef7b274a651608c76be05be15e4 with {'pipeline': 'hic', 'release': '1.3.0', 'sha': 'ac74763a91961ef7b274a651608c76be05be15e4', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.009598', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1411971Z 2025-08-21 21:57:45,009 - INFO - āœ… Tagged current release: hic/results-ac74763a91961ef7b274a651608c76be05be15e4 +2025-08-21T21:57:45.1412221Z 2025-08-21 21:57:45,009 - INFO - Processing: nanoseq/results-6e563e54362cddb8e48d15c156251708c22d0e8d +2025-08-21T21:57:45.1413069Z 2025-08-21 21:57:45,009 - INFO - DRY RUN: Would tag objects in nanoseq/results-6e563e54362cddb8e48d15c156251708c22d0e8d with {'pipeline': 'nanoseq', 'release': '3.1.0', 'sha': '6e563e54362cddb8e48d15c156251708c22d0e8d', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.009682', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1413438Z 2025-08-21 21:57:45,009 - INFO - āœ… Tagged current release: nanoseq/results-6e563e54362cddb8e48d15c156251708c22d0e8d +2025-08-21T21:57:45.1413832Z 2025-08-21 21:57:45,009 - INFO - Processing: methylseq/results-335f2a865a07a4b1b084830149412e404a736db2-bismark-CPU +2025-08-21T21:57:45.1414611Z 2025-08-21 21:57:45,009 - INFO - DRY RUN: Would tag objects in methylseq/results-335f2a865a07a4b1b084830149412e404a736db2-bismark-CPU with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.009776', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1415176Z 2025-08-21 21:57:45,009 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-335f2a865a07a4b1b084830149412e404a736db2-bismark-CPU +2025-08-21T21:57:45.1415436Z 2025-08-21 21:57:45,009 - INFO - Processing: metapep/results-test-8923d02a29e20990954c5d8b053e612999e43212 +2025-08-21T21:57:45.1416179Z 2025-08-21 21:57:45,009 - INFO - DRY RUN: Would tag objects in metapep/results-test-8923d02a29e20990954c5d8b053e612999e43212 with {'pipeline': 'metapep', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.009864', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1416608Z 2025-08-21 21:57:45,009 - WARNING - šŸ—‘ļø Tagged orphaned directory: metapep/results-test-8923d02a29e20990954c5d8b053e612999e43212 +2025-08-21T21:57:45.1416842Z 2025-08-21 21:57:45,009 - INFO - Processing: rnaseq/results-7106bd792b3fb04f9f09b4e737165fa4e736ea81 +2025-08-21T21:57:45.1417687Z 2025-08-21 21:57:45,009 - INFO - DRY RUN: Would tag objects in rnaseq/results-7106bd792b3fb04f9f09b4e737165fa4e736ea81 with {'pipeline': 'rnaseq', 'release': '3.6', 'sha': '7106bd792b3fb04f9f09b4e737165fa4e736ea81', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.009951', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1418042Z 2025-08-21 21:57:45,009 - INFO - āœ… Tagged current release: rnaseq/results-7106bd792b3fb04f9f09b4e737165fa4e736ea81 +2025-08-21T21:57:45.1418273Z 2025-08-21 21:57:45,010 - INFO - Processing: molkart/results-7605a53092930a0b65509c64f79834a6c8449e9b +2025-08-21T21:57:45.1419124Z 2025-08-21 21:57:45,010 - INFO - DRY RUN: Would tag objects in molkart/results-7605a53092930a0b65509c64f79834a6c8449e9b with {'pipeline': 'molkart', 'release': '1.0.0', 'sha': '7605a53092930a0b65509c64f79834a6c8449e9b', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.010034', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1419479Z 2025-08-21 21:57:45,010 - INFO - āœ… Tagged current release: molkart/results-7605a53092930a0b65509c64f79834a6c8449e9b +2025-08-21T21:57:45.1419717Z 2025-08-21 21:57:45,010 - INFO - Processing: cutandrun/results-dcaa4423d783017996c30302d16d772facb0da7e +2025-08-21T21:57:45.1420582Z 2025-08-21 21:57:45,010 - INFO - DRY RUN: Would tag objects in cutandrun/results-dcaa4423d783017996c30302d16d772facb0da7e with {'pipeline': 'cutandrun', 'release': '3.0', 'sha': 'dcaa4423d783017996c30302d16d772facb0da7e', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.010117', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1421095Z 2025-08-21 21:57:45,010 - INFO - āœ… Tagged current release: cutandrun/results-dcaa4423d783017996c30302d16d772facb0da7e +2025-08-21T21:57:45.1421360Z 2025-08-21 21:57:45,010 - INFO - Processing: taxprofiler/results-cc34d41200136ec3a4b7f79da7f876ee9c79d97b +2025-08-21T21:57:45.1422110Z 2025-08-21 21:57:45,010 - INFO - DRY RUN: Would tag objects in taxprofiler/results-cc34d41200136ec3a4b7f79da7f876ee9c79d97b with {'pipeline': 'taxprofiler', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.010201', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1422532Z 2025-08-21 21:57:45,010 - WARNING - šŸ—‘ļø Tagged orphaned directory: taxprofiler/results-cc34d41200136ec3a4b7f79da7f876ee9c79d97b +2025-08-21T21:57:45.1422773Z 2025-08-21 21:57:45,010 - INFO - Processing: crisprseq/results-647b7437dcbf0e52a09623dd8b7439782ed6b1b7 +2025-08-21T21:57:45.1423512Z 2025-08-21 21:57:45,010 - INFO - DRY RUN: Would tag objects in crisprseq/results-647b7437dcbf0e52a09623dd8b7439782ed6b1b7 with {'pipeline': 'crisprseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.010289', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1424030Z 2025-08-21 21:57:45,010 - WARNING - šŸ—‘ļø Tagged orphaned directory: crisprseq/results-647b7437dcbf0e52a09623dd8b7439782ed6b1b7 +2025-08-21T21:57:45.1424263Z 2025-08-21 21:57:45,010 - INFO - Processing: circrna/results-18e580e3f81c3c37189c49033948616a773404af +2025-08-21T21:57:45.1425067Z 2025-08-21 21:57:45,010 - INFO - DRY RUN: Would tag objects in circrna/results-18e580e3f81c3c37189c49033948616a773404af with {'pipeline': 'circrna', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.010375', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1425467Z 2025-08-21 21:57:45,010 - WARNING - šŸ—‘ļø Tagged orphaned directory: circrna/results-18e580e3f81c3c37189c49033948616a773404af +2025-08-21T21:57:45.1425718Z 2025-08-21 21:57:45,010 - INFO - Processing: nanostring/results-415bc686f6d3c2f4df98fdf019a0c1e22fb40ccf +2025-08-21T21:57:45.1426627Z 2025-08-21 21:57:45,010 - INFO - DRY RUN: Would tag objects in nanostring/results-415bc686f6d3c2f4df98fdf019a0c1e22fb40ccf with {'pipeline': 'nanostring', 'release': '1.2.0', 'sha': '415bc686f6d3c2f4df98fdf019a0c1e22fb40ccf', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.010462', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1427002Z 2025-08-21 21:57:45,010 - INFO - āœ… Tagged current release: nanostring/results-415bc686f6d3c2f4df98fdf019a0c1e22fb40ccf +2025-08-21T21:57:45.1427155Z 2025-08-21 21:57:45,010 - INFO - Processing: rnafusion/results-dev +2025-08-21T21:57:45.1427746Z 2025-08-21 21:57:45,010 - INFO - DRY RUN: Would tag objects in rnafusion/results-dev with {'pipeline': 'rnafusion', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.010570', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1428014Z 2025-08-21 21:57:45,010 - WARNING - šŸ—‘ļø Tagged orphaned directory: rnafusion/results-dev +2025-08-21T21:57:45.1428259Z 2025-08-21 21:57:45,010 - INFO - Processing: chipseq/results-51eba00b32885c4d0bec60db3cb0a45eb61e34c5 +2025-08-21T21:57:45.1429135Z 2025-08-21 21:57:45,010 - INFO - DRY RUN: Would tag objects in chipseq/results-51eba00b32885c4d0bec60db3cb0a45eb61e34c5 with {'pipeline': 'chipseq', 'release': '2.0.0', 'sha': '51eba00b32885c4d0bec60db3cb0a45eb61e34c5', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.010657', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1429503Z 2025-08-21 21:57:45,010 - INFO - āœ… Tagged current release: chipseq/results-51eba00b32885c4d0bec60db3cb0a45eb61e34c5 +2025-08-21T21:57:45.1429735Z 2025-08-21 21:57:45,010 - INFO - Processing: demo/results-705f18e4b1540f207cf8ffdc97ee5bd70a0b022c +2025-08-21T21:57:45.1430688Z 2025-08-21 21:57:45,010 - INFO - DRY RUN: Would tag objects in demo/results-705f18e4b1540f207cf8ffdc97ee5bd70a0b022c with {'pipeline': 'demo', 'release': '1.0.0', 'sha': '705f18e4b1540f207cf8ffdc97ee5bd70a0b022c', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.010742', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1431053Z 2025-08-21 21:57:45,010 - INFO - āœ… Tagged current release: demo/results-705f18e4b1540f207cf8ffdc97ee5bd70a0b022c +2025-08-21T21:57:45.1431301Z 2025-08-21 21:57:45,010 - INFO - Processing: crisprseq/results-b2c583a3fda29d464be5e7d1957eac5bc11d49fa +2025-08-21T21:57:45.1432185Z 2025-08-21 21:57:45,010 - INFO - DRY RUN: Would tag objects in crisprseq/results-b2c583a3fda29d464be5e7d1957eac5bc11d49fa with {'pipeline': 'crisprseq', 'release': '2.2.1', 'sha': 'b2c583a3fda29d464be5e7d1957eac5bc11d49fa', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.010825', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1432558Z 2025-08-21 21:57:45,010 - INFO - āœ… Tagged current release: crisprseq/results-b2c583a3fda29d464be5e7d1957eac5bc11d49fa +2025-08-21T21:57:45.1432799Z 2025-08-21 21:57:45,010 - INFO - Processing: rnaseq/results-f06f298abe39a6efd5e1d2f31e7ea1e09911dd2e +2025-08-21T21:57:45.1433518Z 2025-08-21 21:57:45,010 - INFO - DRY RUN: Would tag objects in rnaseq/results-f06f298abe39a6efd5e1d2f31e7ea1e09911dd2e with {'pipeline': 'rnaseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.010909', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1434033Z 2025-08-21 21:57:45,010 - WARNING - šŸ—‘ļø Tagged orphaned directory: rnaseq/results-f06f298abe39a6efd5e1d2f31e7ea1e09911dd2e +2025-08-21T21:57:45.1434286Z 2025-08-21 21:57:45,010 - INFO - Processing: viralrecon/results-3ee1fe98fdf17a80922aa8cf4da4afaf483f3429 +2025-08-21T21:57:45.1435271Z 2025-08-21 21:57:45,011 - INFO - DRY RUN: Would tag objects in viralrecon/results-3ee1fe98fdf17a80922aa8cf4da4afaf483f3429 with {'pipeline': 'viralrecon', 'release': '2.5', 'sha': '3ee1fe98fdf17a80922aa8cf4da4afaf483f3429', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.010997', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1435711Z 2025-08-21 21:57:45,011 - INFO - āœ… Tagged current release: viralrecon/results-3ee1fe98fdf17a80922aa8cf4da4afaf483f3429 +2025-08-21T21:57:45.1435962Z 2025-08-21 21:57:45,011 - INFO - Processing: rnaseq/results-b2a5b081aa21e65cdad4a19b87e5d70b6b990a15 +2025-08-21T21:57:45.1436669Z 2025-08-21 21:57:45,011 - INFO - DRY RUN: Would tag objects in rnaseq/results-b2a5b081aa21e65cdad4a19b87e5d70b6b990a15 with {'pipeline': 'rnaseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.011082', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1437063Z 2025-08-21 21:57:45,011 - WARNING - šŸ—‘ļø Tagged orphaned directory: rnaseq/results-b2a5b081aa21e65cdad4a19b87e5d70b6b990a15 +2025-08-21T21:57:45.1437317Z 2025-08-21 21:57:45,011 - INFO - Processing: metatdenovo/results-c42a8d4a0c9eacb1f4605bae4ed824b91d345089 +2025-08-21T21:57:45.1438218Z 2025-08-21 21:57:45,011 - INFO - DRY RUN: Would tag objects in metatdenovo/results-c42a8d4a0c9eacb1f4605bae4ed824b91d345089 with {'pipeline': 'metatdenovo', 'release': '1.1.1', 'sha': 'c42a8d4a0c9eacb1f4605bae4ed824b91d345089', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.011168', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1438602Z 2025-08-21 21:57:45,011 - INFO - āœ… Tagged current release: metatdenovo/results-c42a8d4a0c9eacb1f4605bae4ed824b91d345089 +2025-08-21T21:57:45.1438853Z 2025-08-21 21:57:45,011 - INFO - Processing: raredisease/results-30e27813a8980fbf54438dcdd73733f7c1369c99 +2025-08-21T21:57:45.1439736Z 2025-08-21 21:57:45,011 - INFO - DRY RUN: Would tag objects in raredisease/results-30e27813a8980fbf54438dcdd73733f7c1369c99 with {'pipeline': 'raredisease', 'release': '2.0.0', 'sha': '30e27813a8980fbf54438dcdd73733f7c1369c99', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.011252', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1440114Z 2025-08-21 21:57:45,011 - INFO - āœ… Tagged current release: raredisease/results-30e27813a8980fbf54438dcdd73733f7c1369c99 +2025-08-21T21:57:45.1440358Z 2025-08-21 21:57:45,011 - INFO - Processing: methylong/results-d26e6509b2d1fbfa31fbf3b712041a4cb060197a +2025-08-21T21:57:45.1441217Z 2025-08-21 21:57:45,011 - INFO - DRY RUN: Would tag objects in methylong/results-d26e6509b2d1fbfa31fbf3b712041a4cb060197a with {'pipeline': 'methylong', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.011336', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1441637Z 2025-08-21 21:57:45,011 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylong/results-d26e6509b2d1fbfa31fbf3b712041a4cb060197a +2025-08-21T21:57:45.1441939Z 2025-08-21 21:57:45,011 - INFO - Processing: multiplesequencealign/results-c2ef09268c2dc9df2e62bac9b4d08de44d3c75fa +2025-08-21T21:57:45.1442781Z 2025-08-21 21:57:45,011 - INFO - DRY RUN: Would tag objects in multiplesequencealign/results-c2ef09268c2dc9df2e62bac9b4d08de44d3c75fa with {'pipeline': 'multiplesequencealign', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.011422', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1443259Z 2025-08-21 21:57:45,011 - WARNING - šŸ—‘ļø Tagged orphaned directory: multiplesequencealign/results-c2ef09268c2dc9df2e62bac9b4d08de44d3c75fa +2025-08-21T21:57:45.1443607Z 2025-08-21 21:57:45,011 - INFO - Processing: sarek/results-1cb015a499a97ab9e60148c37a4aabba5859dcb3 +2025-08-21T21:57:45.1444348Z 2025-08-21 21:57:45,011 - INFO - DRY RUN: Would tag objects in sarek/results-1cb015a499a97ab9e60148c37a4aabba5859dcb3 with {'pipeline': 'sarek', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.011525', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1444740Z 2025-08-21 21:57:45,011 - WARNING - šŸ—‘ļø Tagged orphaned directory: sarek/results-1cb015a499a97ab9e60148c37a4aabba5859dcb3 +2025-08-21T21:57:45.1445078Z 2025-08-21 21:57:45,011 - INFO - Processing: airrflow/results-0bb3ca4c6763d56c612c8567cb8efb7e54923a5e +2025-08-21T21:57:45.1445958Z 2025-08-21 21:57:45,011 - INFO - DRY RUN: Would tag objects in airrflow/results-0bb3ca4c6763d56c612c8567cb8efb7e54923a5e with {'pipeline': 'airrflow', 'release': '2.1.0', 'sha': '0bb3ca4c6763d56c612c8567cb8efb7e54923a5e', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.011616', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1446337Z 2025-08-21 21:57:45,011 - INFO - āœ… Tagged current release: airrflow/results-0bb3ca4c6763d56c612c8567cb8efb7e54923a5e +2025-08-21T21:57:45.1446628Z 2025-08-21 21:57:45,011 - INFO - Processing: drugresponseeval/results-test-34b5b1a8a7b9e49d59920ecf92a7d9c7c09b4d3c +2025-08-21T21:57:45.1447449Z 2025-08-21 21:57:45,011 - INFO - DRY RUN: Would tag objects in drugresponseeval/results-test-34b5b1a8a7b9e49d59920ecf92a7d9c7c09b4d3c with {'pipeline': 'drugresponseeval', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.011701', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1447909Z 2025-08-21 21:57:45,011 - WARNING - šŸ—‘ļø Tagged orphaned directory: drugresponseeval/results-test-34b5b1a8a7b9e49d59920ecf92a7d9c7c09b4d3c +2025-08-21T21:57:45.1448159Z 2025-08-21 21:57:45,011 - INFO - Processing: methylong/results-36b68c0a81dce08f926101bd3e30be06d6d04a30 +2025-08-21T21:57:45.1448905Z 2025-08-21 21:57:45,011 - INFO - DRY RUN: Would tag objects in methylong/results-36b68c0a81dce08f926101bd3e30be06d6d04a30 with {'pipeline': 'methylong', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.011789', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1449314Z 2025-08-21 21:57:45,011 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylong/results-36b68c0a81dce08f926101bd3e30be06d6d04a30 +2025-08-21T21:57:45.1449566Z 2025-08-21 21:57:45,011 - INFO - Processing: rnaseq/results-test-a10f41afa204538d5dcc89a5910c299d68f94f41 +2025-08-21T21:57:45.1450298Z 2025-08-21 21:57:45,011 - INFO - DRY RUN: Would tag objects in rnaseq/results-test-a10f41afa204538d5dcc89a5910c299d68f94f41 with {'pipeline': 'rnaseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.011876', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1450713Z 2025-08-21 21:57:45,011 - WARNING - šŸ—‘ļø Tagged orphaned directory: rnaseq/results-test-a10f41afa204538d5dcc89a5910c299d68f94f41 +2025-08-21T21:57:45.1451080Z 2025-08-21 21:57:45,011 - INFO - Processing: sarek/results-ed1cc8499366dcefea216fe37e36c6189537d57b +2025-08-21T21:57:45.1451929Z 2025-08-21 21:57:45,011 - INFO - DRY RUN: Would tag objects in sarek/results-ed1cc8499366dcefea216fe37e36c6189537d57b with {'pipeline': 'sarek', 'release': '3.2.3', 'sha': 'ed1cc8499366dcefea216fe37e36c6189537d57b', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.011961', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1452293Z 2025-08-21 21:57:45,011 - INFO - āœ… Tagged current release: sarek/results-ed1cc8499366dcefea216fe37e36c6189537d57b +2025-08-21T21:57:45.1452563Z 2025-08-21 21:57:45,012 - INFO - Processing: epitopeprediction/results-7abf023b210803657760f5300f6a21d286ed167e +2025-08-21T21:57:45.1453508Z 2025-08-21 21:57:45,012 - INFO - DRY RUN: Would tag objects in epitopeprediction/results-7abf023b210803657760f5300f6a21d286ed167e with {'pipeline': 'epitopeprediction', 'release': '2.2.0', 'sha': '7abf023b210803657760f5300f6a21d286ed167e', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.012046', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1454027Z 2025-08-21 21:57:45,012 - INFO - āœ… Tagged current release: epitopeprediction/results-7abf023b210803657760f5300f6a21d286ed167e +2025-08-21T21:57:45.1454258Z 2025-08-21 21:57:45,012 - INFO - Processing: mag/results-375c018a396fc485bcd2cb501b89306f7f71bf46 +2025-08-21T21:57:45.1454944Z 2025-08-21 21:57:45,012 - INFO - DRY RUN: Would tag objects in mag/results-375c018a396fc485bcd2cb501b89306f7f71bf46 with {'pipeline': 'mag', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.012131', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1455427Z 2025-08-21 21:57:45,012 - WARNING - šŸ—‘ļø Tagged orphaned directory: mag/results-375c018a396fc485bcd2cb501b89306f7f71bf46 +2025-08-21T21:57:45.1455662Z 2025-08-21 21:57:45,012 - INFO - Processing: nanoseq/results-9753f1cc740c649e3a7f125585b5c61814585758 +2025-08-21T21:57:45.1456384Z 2025-08-21 21:57:45,012 - INFO - DRY RUN: Would tag objects in nanoseq/results-9753f1cc740c649e3a7f125585b5c61814585758 with {'pipeline': 'nanoseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.012226', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1456784Z 2025-08-21 21:57:45,012 - WARNING - šŸ—‘ļø Tagged orphaned directory: nanoseq/results-9753f1cc740c649e3a7f125585b5c61814585758 +2025-08-21T21:57:45.1457034Z 2025-08-21 21:57:45,012 - INFO - Processing: viralrecon/results-7422b0d353b1a295fb7cda47f2f7750c3bd890d1 +2025-08-21T21:57:45.1457919Z 2025-08-21 21:57:45,012 - INFO - DRY RUN: Would tag objects in viralrecon/results-7422b0d353b1a295fb7cda47f2f7750c3bd890d1 with {'pipeline': 'viralrecon', 'release': '1.0.0', 'sha': '7422b0d353b1a295fb7cda47f2f7750c3bd890d1', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.012312', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1458302Z 2025-08-21 21:57:45,012 - INFO - āœ… Tagged current release: viralrecon/results-7422b0d353b1a295fb7cda47f2f7750c3bd890d1 +2025-08-21T21:57:45.1458537Z 2025-08-21 21:57:45,012 - INFO - Processing: sarek/results-b5b766d3b4ac89864f2fa07441cdc8844e70a79e +2025-08-21T21:57:45.1459381Z 2025-08-21 21:57:45,012 - INFO - DRY RUN: Would tag objects in sarek/results-b5b766d3b4ac89864f2fa07441cdc8844e70a79e with {'pipeline': 'sarek', 'release': '3.4.2', 'sha': 'b5b766d3b4ac89864f2fa07441cdc8844e70a79e', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.012395', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1459735Z 2025-08-21 21:57:45,012 - INFO - āœ… Tagged current release: sarek/results-b5b766d3b4ac89864f2fa07441cdc8844e70a79e +2025-08-21T21:57:45.1459984Z 2025-08-21 21:57:45,012 - INFO - Processing: createtaxdb/results-97816135d29e5998547dca757bcbc11ee3061932 +2025-08-21T21:57:45.1460846Z 2025-08-21 21:57:45,012 - INFO - DRY RUN: Would tag objects in createtaxdb/results-97816135d29e5998547dca757bcbc11ee3061932 with {'pipeline': 'createtaxdb', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.012478', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1461276Z 2025-08-21 21:57:45,012 - WARNING - šŸ—‘ļø Tagged orphaned directory: createtaxdb/results-97816135d29e5998547dca757bcbc11ee3061932 +2025-08-21T21:57:45.1461543Z 2025-08-21 21:57:45,012 - INFO - Processing: genomeassembler/results-4561d9ad3363c2609614b52cfbfe2a043628d2ae +2025-08-21T21:57:45.1462327Z 2025-08-21 21:57:45,012 - INFO - DRY RUN: Would tag objects in genomeassembler/results-4561d9ad3363c2609614b52cfbfe2a043628d2ae with {'pipeline': 'genomeassembler', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.012579', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1462758Z 2025-08-21 21:57:45,012 - WARNING - šŸ—‘ļø Tagged orphaned directory: genomeassembler/results-4561d9ad3363c2609614b52cfbfe2a043628d2ae +2025-08-21T21:57:45.1462998Z 2025-08-21 21:57:45,012 - INFO - Processing: rnaseq/results-8094c42add6dcdf69ce54dfdec957789c37ae903 +2025-08-21T21:57:45.1463857Z 2025-08-21 21:57:45,012 - INFO - DRY RUN: Would tag objects in rnaseq/results-8094c42add6dcdf69ce54dfdec957789c37ae903 with {'pipeline': 'rnaseq', 'release': '3.3', 'sha': '8094c42add6dcdf69ce54dfdec957789c37ae903', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.012665', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1464338Z 2025-08-21 21:57:45,012 - INFO - āœ… Tagged current release: rnaseq/results-8094c42add6dcdf69ce54dfdec957789c37ae903 +2025-08-21T21:57:45.1464576Z 2025-08-21 21:57:45,012 - INFO - Processing: eager/results-a2c9f87d173ca3820ed3bf5f56d67a3a69cfa489 +2025-08-21T21:57:45.1465514Z 2025-08-21 21:57:45,012 - INFO - DRY RUN: Would tag objects in eager/results-a2c9f87d173ca3820ed3bf5f56d67a3a69cfa489 with {'pipeline': 'eager', 'release': '2.5.0', 'sha': 'a2c9f87d173ca3820ed3bf5f56d67a3a69cfa489', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.012748', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1465879Z 2025-08-21 21:57:45,012 - INFO - āœ… Tagged current release: eager/results-a2c9f87d173ca3820ed3bf5f56d67a3a69cfa489 +2025-08-21T21:57:45.1466183Z 2025-08-21 21:57:45,012 - INFO - Processing: multiplesequencealign/results-8c109a21c562fe8f65cf0392b559f96c705418aa +2025-08-21T21:57:45.1467019Z 2025-08-21 21:57:45,012 - INFO - DRY RUN: Would tag objects in multiplesequencealign/results-8c109a21c562fe8f65cf0392b559f96c705418aa with {'pipeline': 'multiplesequencealign', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.012833', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1467484Z 2025-08-21 21:57:45,012 - WARNING - šŸ—‘ļø Tagged orphaned directory: multiplesequencealign/results-8c109a21c562fe8f65cf0392b559f96c705418aa +2025-08-21T21:57:45.1467712Z 2025-08-21 21:57:45,012 - INFO - Processing: mag/results-e486bb23b9012ecf649061f1eb448bb853e0aad8 +2025-08-21T21:57:45.1468547Z 2025-08-21 21:57:45,012 - INFO - DRY RUN: Would tag objects in mag/results-e486bb23b9012ecf649061f1eb448bb853e0aad8 with {'pipeline': 'mag', 'release': '2.5.4', 'sha': 'e486bb23b9012ecf649061f1eb448bb853e0aad8', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.012920', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1468898Z 2025-08-21 21:57:45,012 - INFO - āœ… Tagged current release: mag/results-e486bb23b9012ecf649061f1eb448bb853e0aad8 +2025-08-21T21:57:45.1469150Z 2025-08-21 21:57:45,012 - INFO - Processing: marsseq/results-b02ede773092f8a8a5999400acda6894d51b4d26 +2025-08-21T21:57:45.1470066Z 2025-08-21 21:57:45,013 - INFO - DRY RUN: Would tag objects in marsseq/results-b02ede773092f8a8a5999400acda6894d51b4d26 with {'pipeline': 'marsseq', 'release': '1.0.3', 'sha': 'b02ede773092f8a8a5999400acda6894d51b4d26', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.013008', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1470432Z 2025-08-21 21:57:45,013 - INFO - āœ… Tagged current release: marsseq/results-b02ede773092f8a8a5999400acda6894d51b4d26 +2025-08-21T21:57:45.1470606Z 2025-08-21 21:57:45,013 - INFO - Processing: methylseq/results-dev-bismark-ARM +2025-08-21T21:57:45.1471372Z 2025-08-21 21:57:45,013 - INFO - DRY RUN: Would tag objects in methylseq/results-dev-bismark-ARM with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.013094', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1471688Z 2025-08-21 21:57:45,013 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-dev-bismark-ARM +2025-08-21T21:57:45.1471935Z 2025-08-21 21:57:45,013 - INFO - Processing: fetchngs/results-8c00805705b66587167a1f166935506413225260 +2025-08-21T21:57:45.1481074Z 2025-08-21 21:57:45,013 - INFO - DRY RUN: Would tag objects in fetchngs/results-8c00805705b66587167a1f166935506413225260 with {'pipeline': 'fetchngs', 'release': '1.2', 'sha': '8c00805705b66587167a1f166935506413225260', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.013180', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1481565Z 2025-08-21 21:57:45,013 - INFO - āœ… Tagged current release: fetchngs/results-8c00805705b66587167a1f166935506413225260 +2025-08-21T21:57:45.1482010Z 2025-08-21 21:57:45,013 - INFO - Processing: scrnaseq/results-c5a64459fec1506304f7064639f3f8e12d971269 +2025-08-21T21:57:45.1482906Z 2025-08-21 21:57:45,013 - INFO - DRY RUN: Would tag objects in scrnaseq/results-c5a64459fec1506304f7064639f3f8e12d971269 with {'pipeline': 'scrnaseq', 'release': '2.6.0', 'sha': 'c5a64459fec1506304f7064639f3f8e12d971269', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.013263', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1483284Z 2025-08-21 21:57:45,013 - INFO - āœ… Tagged current release: scrnaseq/results-c5a64459fec1506304f7064639f3f8e12d971269 +2025-08-21T21:57:45.1483525Z 2025-08-21 21:57:45,013 - INFO - Processing: sarek/results-aa9e1891e5c6988168e845795a7bdb618e15b597 +2025-08-21T21:57:45.1484243Z 2025-08-21 21:57:45,013 - INFO - DRY RUN: Would tag objects in sarek/results-aa9e1891e5c6988168e845795a7bdb618e15b597 with {'pipeline': 'sarek', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.013345', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1484653Z 2025-08-21 21:57:45,013 - WARNING - šŸ—‘ļø Tagged orphaned directory: sarek/results-aa9e1891e5c6988168e845795a7bdb618e15b597 +2025-08-21T21:57:45.1484912Z 2025-08-21 21:57:45,013 - INFO - Processing: phaseimpute/results-95d932f5378c3358a97ba703b3b6d1e856c3a368 +2025-08-21T21:57:45.1485829Z 2025-08-21 21:57:45,013 - INFO - DRY RUN: Would tag objects in phaseimpute/results-95d932f5378c3358a97ba703b3b6d1e856c3a368 with {'pipeline': 'phaseimpute', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.013431', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1486257Z 2025-08-21 21:57:45,013 - WARNING - šŸ—‘ļø Tagged orphaned directory: phaseimpute/results-95d932f5378c3358a97ba703b3b6d1e856c3a368 +2025-08-21T21:57:45.1486561Z 2025-08-21 21:57:45,013 - INFO - Processing: drugresponseeval/results-test-00ebfddaa69eb3332d9f1eaa6a517c875807a129 +2025-08-21T21:57:45.1487394Z 2025-08-21 21:57:45,013 - INFO - DRY RUN: Would tag objects in drugresponseeval/results-test-00ebfddaa69eb3332d9f1eaa6a517c875807a129 with {'pipeline': 'drugresponseeval', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.013533', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1487878Z 2025-08-21 21:57:45,013 - WARNING - šŸ—‘ļø Tagged orphaned directory: drugresponseeval/results-test-00ebfddaa69eb3332d9f1eaa6a517c875807a129 +2025-08-21T21:57:45.1488024Z 2025-08-21 21:57:45,013 - INFO - Processing: rnavar/results-dev +2025-08-21T21:57:45.1488598Z 2025-08-21 21:57:45,013 - INFO - DRY RUN: Would tag objects in rnavar/results-dev with {'pipeline': 'rnavar', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.013624', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1488852Z 2025-08-21 21:57:45,013 - WARNING - šŸ—‘ļø Tagged orphaned directory: rnavar/results-dev +2025-08-21T21:57:45.1489219Z 2025-08-21 21:57:45,013 - INFO - Processing: funcscan/results-0e0bf847b885cdf6562084284817e3923956bd3a +2025-08-21T21:57:45.1489945Z 2025-08-21 21:57:45,013 - INFO - DRY RUN: Would tag objects in funcscan/results-0e0bf847b885cdf6562084284817e3923956bd3a with {'pipeline': 'funcscan', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.013710', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1490356Z 2025-08-21 21:57:45,013 - WARNING - šŸ—‘ļø Tagged orphaned directory: funcscan/results-0e0bf847b885cdf6562084284817e3923956bd3a +2025-08-21T21:57:45.1490597Z 2025-08-21 21:57:45,013 - INFO - Processing: nanoseq/results-8ba80ba07335c25970f2ed23dec4c639ae8cc8a8 +2025-08-21T21:57:45.1491325Z 2025-08-21 21:57:45,013 - INFO - DRY RUN: Would tag objects in nanoseq/results-8ba80ba07335c25970f2ed23dec4c639ae8cc8a8 with {'pipeline': 'nanoseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.013797', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1491726Z 2025-08-21 21:57:45,013 - WARNING - šŸ—‘ļø Tagged orphaned directory: nanoseq/results-8ba80ba07335c25970f2ed23dec4c639ae8cc8a8 +2025-08-21T21:57:45.1492074Z 2025-08-21 21:57:45,013 - INFO - Processing: rnaseq/results-e049f51f0214b2aef7624b9dd496a404a7c34d14 +2025-08-21T21:57:45.1492917Z 2025-08-21 21:57:45,013 - INFO - DRY RUN: Would tag objects in rnaseq/results-e049f51f0214b2aef7624b9dd496a404a7c34d14 with {'pipeline': 'rnaseq', 'release': '3.9', 'sha': 'e049f51f0214b2aef7624b9dd496a404a7c34d14', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.013884', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1493284Z 2025-08-21 21:57:45,013 - INFO - āœ… Tagged current release: rnaseq/results-e049f51f0214b2aef7624b9dd496a404a7c34d14 +2025-08-21T21:57:45.1493539Z 2025-08-21 21:57:45,013 - INFO - Processing: metatdenovo/results-b7eab0b7068464dbff5de2ff8e0663709b003a39 +2025-08-21T21:57:45.1494439Z 2025-08-21 21:57:45,013 - INFO - DRY RUN: Would tag objects in metatdenovo/results-b7eab0b7068464dbff5de2ff8e0663709b003a39 with {'pipeline': 'metatdenovo', 'release': '1.1.0', 'sha': 'b7eab0b7068464dbff5de2ff8e0663709b003a39', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.013969', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1494825Z 2025-08-21 21:57:45,014 - INFO - āœ… Tagged current release: metatdenovo/results-b7eab0b7068464dbff5de2ff8e0663709b003a39 +2025-08-21T21:57:45.1495184Z 2025-08-21 21:57:45,014 - INFO - Processing: taxprofiler/results-0af416a24b4bcf41b9e2b5288c31c05280ca7994 +2025-08-21T21:57:45.1496069Z 2025-08-21 21:57:45,014 - INFO - DRY RUN: Would tag objects in taxprofiler/results-0af416a24b4bcf41b9e2b5288c31c05280ca7994 with {'pipeline': 'taxprofiler', 'release': '1.2.1', 'sha': '0af416a24b4bcf41b9e2b5288c31c05280ca7994', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.014053', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1496451Z 2025-08-21 21:57:45,014 - INFO - āœ… Tagged current release: taxprofiler/results-0af416a24b4bcf41b9e2b5288c31c05280ca7994 +2025-08-21T21:57:45.1496726Z 2025-08-21 21:57:45,014 - INFO - Processing: viralintegration/results-88a9d1708a2a8494f4994402440adedd7c527964 +2025-08-21T21:57:45.1497661Z 2025-08-21 21:57:45,014 - INFO - DRY RUN: Would tag objects in viralintegration/results-88a9d1708a2a8494f4994402440adedd7c527964 with {'pipeline': 'viralintegration', 'release': '0.1.0', 'sha': '88a9d1708a2a8494f4994402440adedd7c527964', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.014136', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1498053Z 2025-08-21 21:57:45,014 - INFO - āœ… Tagged current release: viralintegration/results-88a9d1708a2a8494f4994402440adedd7c527964 +2025-08-21T21:57:45.1498288Z 2025-08-21 21:57:45,014 - INFO - Processing: mag/results-485c3fa0ba7345ac124bef04d08391d5e7cdcb42 +2025-08-21T21:57:45.1499239Z 2025-08-21 21:57:45,014 - INFO - DRY RUN: Would tag objects in mag/results-485c3fa0ba7345ac124bef04d08391d5e7cdcb42 with {'pipeline': 'mag', 'release': '1.2.0', 'sha': '485c3fa0ba7345ac124bef04d08391d5e7cdcb42', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.014221', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1499605Z 2025-08-21 21:57:45,014 - INFO - āœ… Tagged current release: mag/results-485c3fa0ba7345ac124bef04d08391d5e7cdcb42 +2025-08-21T21:57:45.1499826Z 2025-08-21 21:57:45,014 - INFO - Processing: mag/results-277e1368a825be4ffe3cb2d04943f0f94119110b +2025-08-21T21:57:45.1500512Z 2025-08-21 21:57:45,014 - INFO - DRY RUN: Would tag objects in mag/results-277e1368a825be4ffe3cb2d04943f0f94119110b with {'pipeline': 'mag', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.014306', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1500893Z 2025-08-21 21:57:45,014 - WARNING - šŸ—‘ļø Tagged orphaned directory: mag/results-277e1368a825be4ffe3cb2d04943f0f94119110b +2025-08-21T21:57:45.1501122Z 2025-08-21 21:57:45,014 - INFO - Processing: hic/results-b4d89cfacf97a5835fba804887cf0fc7e0449e8d +2025-08-21T21:57:45.1501955Z 2025-08-21 21:57:45,014 - INFO - DRY RUN: Would tag objects in hic/results-b4d89cfacf97a5835fba804887cf0fc7e0449e8d with {'pipeline': 'hic', 'release': '2.0.0', 'sha': 'b4d89cfacf97a5835fba804887cf0fc7e0449e8d', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.014392', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1502434Z 2025-08-21 21:57:45,014 - INFO - āœ… Tagged current release: hic/results-b4d89cfacf97a5835fba804887cf0fc7e0449e8d +2025-08-21T21:57:45.1502680Z 2025-08-21 21:57:45,014 - INFO - Processing: airrflow/results-d91dd840f47e46c2fcffab88cc84e6d047b8d449 +2025-08-21T21:57:45.1503559Z 2025-08-21 21:57:45,014 - INFO - DRY RUN: Would tag objects in airrflow/results-d91dd840f47e46c2fcffab88cc84e6d047b8d449 with {'pipeline': 'airrflow', 'release': '4.2.0', 'sha': 'd91dd840f47e46c2fcffab88cc84e6d047b8d449', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.014475', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1503926Z 2025-08-21 21:57:45,014 - INFO - āœ… Tagged current release: airrflow/results-d91dd840f47e46c2fcffab88cc84e6d047b8d449 +2025-08-21T21:57:45.1504189Z 2025-08-21 21:57:45,014 - INFO - Processing: demultiplex/results-aa4d93673a4e04b1daf7b4bd71269d6054275534 +2025-08-21T21:57:45.1505177Z 2025-08-21 21:57:45,014 - INFO - DRY RUN: Would tag objects in demultiplex/results-aa4d93673a4e04b1daf7b4bd71269d6054275534 with {'pipeline': 'demultiplex', 'release': '1.4.1', 'sha': 'aa4d93673a4e04b1daf7b4bd71269d6054275534', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.014576', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1505560Z 2025-08-21 21:57:45,014 - INFO - āœ… Tagged current release: demultiplex/results-aa4d93673a4e04b1daf7b4bd71269d6054275534 +2025-08-21T21:57:45.1505802Z 2025-08-21 21:57:45,014 - INFO - Processing: createtaxdb/results-07fb75f09e87719225fbf8754430c8f33f0938aa +2025-08-21T21:57:45.1506553Z 2025-08-21 21:57:45,014 - INFO - DRY RUN: Would tag objects in createtaxdb/results-07fb75f09e87719225fbf8754430c8f33f0938aa with {'pipeline': 'createtaxdb', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.014662', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1506969Z 2025-08-21 21:57:45,014 - WARNING - šŸ—‘ļø Tagged orphaned directory: createtaxdb/results-07fb75f09e87719225fbf8754430c8f33f0938aa +2025-08-21T21:57:45.1507247Z 2025-08-21 21:57:45,014 - INFO - Processing: epitopeprediction/results-ce15e440954f8e7c83c341261b82aacc8e3535ac +2025-08-21T21:57:45.1508188Z 2025-08-21 21:57:45,014 - INFO - DRY RUN: Would tag objects in epitopeprediction/results-ce15e440954f8e7c83c341261b82aacc8e3535ac with {'pipeline': 'epitopeprediction', 'release': '1.1.0', 'sha': 'ce15e440954f8e7c83c341261b82aacc8e3535ac', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.014753', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1508594Z 2025-08-21 21:57:45,014 - INFO - āœ… Tagged current release: epitopeprediction/results-ce15e440954f8e7c83c341261b82aacc8e3535ac +2025-08-21T21:57:45.1508821Z 2025-08-21 21:57:45,014 - INFO - Processing: isoseq/results-c7536ab0e18a27460476d4e8557845950292f070 +2025-08-21T21:57:45.1509807Z 2025-08-21 21:57:45,014 - INFO - DRY RUN: Would tag objects in isoseq/results-c7536ab0e18a27460476d4e8557845950292f070 with {'pipeline': 'isoseq', 'release': '2.0.0', 'sha': 'c7536ab0e18a27460476d4e8557845950292f070', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.014837', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1510169Z 2025-08-21 21:57:45,014 - INFO - āœ… Tagged current release: isoseq/results-c7536ab0e18a27460476d4e8557845950292f070 +2025-08-21T21:57:45.1510393Z 2025-08-21 21:57:45,014 - INFO - Processing: mag/results-66cf53aff834d2a254b78b94fc54cd656b8b7b57 +2025-08-21T21:57:45.1511212Z 2025-08-21 21:57:45,014 - INFO - DRY RUN: Would tag objects in mag/results-66cf53aff834d2a254b78b94fc54cd656b8b7b57 with {'pipeline': 'mag', 'release': '2.3.2', 'sha': '66cf53aff834d2a254b78b94fc54cd656b8b7b57', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.014921', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1511567Z 2025-08-21 21:57:45,014 - INFO - āœ… Tagged current release: mag/results-66cf53aff834d2a254b78b94fc54cd656b8b7b57 +2025-08-21T21:57:45.1511944Z 2025-08-21 21:57:45,014 - INFO - Processing: phaseimpute/results-10985a2aae1f977f953fdad74b44ac0c39d00579 +2025-08-21T21:57:45.1512693Z 2025-08-21 21:57:45,015 - INFO - DRY RUN: Would tag objects in phaseimpute/results-10985a2aae1f977f953fdad74b44ac0c39d00579 with {'pipeline': 'phaseimpute', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.015012', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1513109Z 2025-08-21 21:57:45,015 - WARNING - šŸ—‘ļø Tagged orphaned directory: phaseimpute/results-10985a2aae1f977f953fdad74b44ac0c39d00579 +2025-08-21T21:57:45.1513351Z 2025-08-21 21:57:45,015 - INFO - Processing: airrflow/results-a6fdad9f6a2408d7846789e549f8650c30485fe5 +2025-08-21T21:57:45.1514216Z 2025-08-21 21:57:45,015 - INFO - DRY RUN: Would tag objects in airrflow/results-a6fdad9f6a2408d7846789e549f8650c30485fe5 with {'pipeline': 'airrflow', 'release': '2.4.0', 'sha': 'a6fdad9f6a2408d7846789e549f8650c30485fe5', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.015100', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1514588Z 2025-08-21 21:57:45,015 - INFO - āœ… Tagged current release: airrflow/results-a6fdad9f6a2408d7846789e549f8650c30485fe5 +2025-08-21T21:57:45.1514822Z 2025-08-21 21:57:45,015 - INFO - Processing: atacseq/results-1b3a832db5a53c92c2c89a4d6d79455e860461ad +2025-08-21T21:57:45.1515771Z 2025-08-21 21:57:45,015 - INFO - DRY RUN: Would tag objects in atacseq/results-1b3a832db5a53c92c2c89a4d6d79455e860461ad with {'pipeline': 'atacseq', 'release': '1.2.1', 'sha': '1b3a832db5a53c92c2c89a4d6d79455e860461ad', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.015185', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1516132Z 2025-08-21 21:57:45,015 - INFO - āœ… Tagged current release: atacseq/results-1b3a832db5a53c92c2c89a4d6d79455e860461ad +2025-08-21T21:57:45.1516320Z 2025-08-21 21:57:45,015 - INFO - Processing: rnaseq/results-paramsText-json-test +2025-08-21T21:57:45.1516959Z 2025-08-21 21:57:45,015 - INFO - DRY RUN: Would tag objects in rnaseq/results-paramsText-json-test with {'pipeline': 'rnaseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.015270', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1517296Z 2025-08-21 21:57:45,015 - WARNING - šŸ—‘ļø Tagged orphaned directory: rnaseq/results-paramsText-json-test +2025-08-21T21:57:45.1517552Z 2025-08-21 21:57:45,015 - INFO - Processing: oncoanalyser/results-4227bc1083209d79c8735d32e6c75f762a640006 +2025-08-21T21:57:45.1518445Z 2025-08-21 21:57:45,015 - INFO - DRY RUN: Would tag objects in oncoanalyser/results-4227bc1083209d79c8735d32e6c75f762a640006 with {'pipeline': 'oncoanalyser', 'release': '1.0.0', 'sha': '4227bc1083209d79c8735d32e6c75f762a640006', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.015357', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1518820Z 2025-08-21 21:57:45,015 - INFO - āœ… Tagged current release: oncoanalyser/results-4227bc1083209d79c8735d32e6c75f762a640006 +2025-08-21T21:57:45.1519182Z 2025-08-21 21:57:45,015 - INFO - Processing: circdna/results-0ec8d8552c32831242e99549879aa8c4a0ab0a12 +2025-08-21T21:57:45.1520069Z 2025-08-21 21:57:45,015 - INFO - DRY RUN: Would tag objects in circdna/results-0ec8d8552c32831242e99549879aa8c4a0ab0a12 with {'pipeline': 'circdna', 'release': '1.0.3dev-alpha', 'sha': '0ec8d8552c32831242e99549879aa8c4a0ab0a12', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.015442', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1520429Z 2025-08-21 21:57:45,015 - INFO - āœ… Tagged current release: circdna/results-0ec8d8552c32831242e99549879aa8c4a0ab0a12 +2025-08-21T21:57:45.1520690Z 2025-08-21 21:57:45,015 - INFO - Processing: airrflow/results-test-0121f8e4ee2bcd595f6ec34774e138658f54052a +2025-08-21T21:57:45.1521437Z 2025-08-21 21:57:45,015 - INFO - DRY RUN: Would tag objects in airrflow/results-test-0121f8e4ee2bcd595f6ec34774e138658f54052a with {'pipeline': 'airrflow', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.015543', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1521978Z 2025-08-21 21:57:45,015 - WARNING - šŸ—‘ļø Tagged orphaned directory: airrflow/results-test-0121f8e4ee2bcd595f6ec34774e138658f54052a +2025-08-21T21:57:45.1522237Z 2025-08-21 21:57:45,015 - INFO - Processing: demultiplex/results-2e648b585a5432b16ba87389dd4d876ad73db460 +2025-08-21T21:57:45.1523116Z 2025-08-21 21:57:45,015 - INFO - DRY RUN: Would tag objects in demultiplex/results-2e648b585a5432b16ba87389dd4d876ad73db460 with {'pipeline': 'demultiplex', 'release': '1.5.3', 'sha': '2e648b585a5432b16ba87389dd4d876ad73db460', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.015634', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1523495Z 2025-08-21 21:57:45,015 - INFO - āœ… Tagged current release: demultiplex/results-2e648b585a5432b16ba87389dd4d876ad73db460 +2025-08-21T21:57:45.1523727Z 2025-08-21 21:57:45,015 - INFO - Processing: circdna/results-41452bfef40b220d9138dfca16091f0c9db58f3a +2025-08-21T21:57:45.1524611Z 2025-08-21 21:57:45,015 - INFO - DRY RUN: Would tag objects in circdna/results-41452bfef40b220d9138dfca16091f0c9db58f3a with {'pipeline': 'circdna', 'release': '1.0.3dev', 'sha': '41452bfef40b220d9138dfca16091f0c9db58f3a', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.015719', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1525061Z 2025-08-21 21:57:45,015 - INFO - āœ… Tagged current release: circdna/results-41452bfef40b220d9138dfca16091f0c9db58f3a +2025-08-21T21:57:45.1525299Z 2025-08-21 21:57:45,015 - INFO - Processing: circdna/results-09bdf9a4686fbef160c901096a1c2bb32b4ed39c +2025-08-21T21:57:45.1526152Z 2025-08-21 21:57:45,015 - INFO - DRY RUN: Would tag objects in circdna/results-09bdf9a4686fbef160c901096a1c2bb32b4ed39c with {'pipeline': 'circdna', 'release': '1.0.3', 'sha': '09bdf9a4686fbef160c901096a1c2bb32b4ed39c', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.015803', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1526520Z 2025-08-21 21:57:45,015 - INFO - āœ… Tagged current release: circdna/results-09bdf9a4686fbef160c901096a1c2bb32b4ed39c +2025-08-21T21:57:45.1526765Z 2025-08-21 21:57:45,015 - INFO - Processing: airrflow/results-a2a6099a9e73cca504f3e33b566ddb997acdb7b5 +2025-08-21T21:57:45.1527633Z 2025-08-21 21:57:45,015 - INFO - DRY RUN: Would tag objects in airrflow/results-a2a6099a9e73cca504f3e33b566ddb997acdb7b5 with {'pipeline': 'airrflow', 'release': '3.1.0', 'sha': 'a2a6099a9e73cca504f3e33b566ddb997acdb7b5', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.015885', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1527993Z 2025-08-21 21:57:45,015 - INFO - āœ… Tagged current release: airrflow/results-a2a6099a9e73cca504f3e33b566ddb997acdb7b5 +2025-08-21T21:57:45.1528213Z 2025-08-21 21:57:45,015 - INFO - Processing: mag/results-2d76836185303d17093eaac9de7198048c8dfb82 +2025-08-21T21:57:45.1529001Z 2025-08-21 21:57:45,015 - INFO - DRY RUN: Would tag objects in mag/results-2d76836185303d17093eaac9de7198048c8dfb82 with {'pipeline': 'mag', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.015969', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1529397Z 2025-08-21 21:57:45,016 - WARNING - šŸ—‘ļø Tagged orphaned directory: mag/results-2d76836185303d17093eaac9de7198048c8dfb82 +2025-08-21T21:57:45.1529644Z 2025-08-21 21:57:45,016 - INFO - Processing: viralrecon/results-8abaab4f5a53575e015838fe208d5726afb49f9b +2025-08-21T21:57:45.1530385Z 2025-08-21 21:57:45,016 - INFO - DRY RUN: Would tag objects in viralrecon/results-8abaab4f5a53575e015838fe208d5726afb49f9b with {'pipeline': 'viralrecon', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.016058', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1530791Z 2025-08-21 21:57:45,016 - WARNING - šŸ—‘ļø Tagged orphaned directory: viralrecon/results-8abaab4f5a53575e015838fe208d5726afb49f9b +2025-08-21T21:57:45.1531033Z 2025-08-21 21:57:45,016 - INFO - Processing: scrnaseq/results-cfada12a6f5d773a76d5f1793d70661e95852c53 +2025-08-21T21:57:45.1532013Z 2025-08-21 21:57:45,016 - INFO - DRY RUN: Would tag objects in scrnaseq/results-cfada12a6f5d773a76d5f1793d70661e95852c53 with {'pipeline': 'scrnaseq', 'release': '2.3.0', 'sha': 'cfada12a6f5d773a76d5f1793d70661e95852c53', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.016144', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1532386Z 2025-08-21 21:57:45,016 - INFO - āœ… Tagged current release: scrnaseq/results-cfada12a6f5d773a76d5f1793d70661e95852c53 +2025-08-21T21:57:45.1532653Z 2025-08-21 21:57:45,016 - INFO - Processing: methylong/results-test-630bec9c7825feba23886d1cb43e1d20b357ebe2 +2025-08-21T21:57:45.1533417Z 2025-08-21 21:57:45,016 - INFO - DRY RUN: Would tag objects in methylong/results-test-630bec9c7825feba23886d1cb43e1d20b357ebe2 with {'pipeline': 'methylong', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.016230', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1533858Z 2025-08-21 21:57:45,016 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylong/results-test-630bec9c7825feba23886d1cb43e1d20b357ebe2 +2025-08-21T21:57:45.1534133Z 2025-08-21 21:57:45,016 - INFO - Processing: marsseq/results-test-0ca38c3bd5a35e7abcf2e83dc1ff7c1e73e50856 +2025-08-21T21:57:45.1534874Z 2025-08-21 21:57:45,016 - INFO - DRY RUN: Would tag objects in marsseq/results-test-0ca38c3bd5a35e7abcf2e83dc1ff7c1e73e50856 with {'pipeline': 'marsseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.016317', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1535401Z 2025-08-21 21:57:45,016 - WARNING - šŸ—‘ļø Tagged orphaned directory: marsseq/results-test-0ca38c3bd5a35e7abcf2e83dc1ff7c1e73e50856 +2025-08-21T21:57:45.1535634Z 2025-08-21 21:57:45,016 - INFO - Processing: bacass/results-4500b3bf69c45c1b5a8d368f24048575b18588dd +2025-08-21T21:57:45.1536484Z 2025-08-21 21:57:45,016 - INFO - DRY RUN: Would tag objects in bacass/results-4500b3bf69c45c1b5a8d368f24048575b18588dd with {'pipeline': 'bacass', 'release': '1.1.1', 'sha': '4500b3bf69c45c1b5a8d368f24048575b18588dd', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.016404', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1536848Z 2025-08-21 21:57:45,016 - INFO - āœ… Tagged current release: bacass/results-4500b3bf69c45c1b5a8d368f24048575b18588dd +2025-08-21T21:57:45.1537109Z 2025-08-21 21:57:45,016 - INFO - Processing: metaboigniter/results-55d82547604fcae3b6557fe7a3c442b623184f34 +2025-08-21T21:57:45.1538018Z 2025-08-21 21:57:45,016 - INFO - DRY RUN: Would tag objects in metaboigniter/results-55d82547604fcae3b6557fe7a3c442b623184f34 with {'pipeline': 'metaboigniter', 'release': '2.0.1', 'sha': '55d82547604fcae3b6557fe7a3c442b623184f34', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.016490', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1538406Z 2025-08-21 21:57:45,016 - INFO - āœ… Tagged current release: metaboigniter/results-55d82547604fcae3b6557fe7a3c442b623184f34 +2025-08-21T21:57:45.1538769Z 2025-08-21 21:57:45,016 - INFO - Processing: proteinfold/results-d75ade173c8429876f90739ed830d62193271bae +2025-08-21T21:57:45.1539662Z 2025-08-21 21:57:45,016 - INFO - DRY RUN: Would tag objects in proteinfold/results-d75ade173c8429876f90739ed830d62193271bae with {'pipeline': 'proteinfold', 'release': '1.1.0', 'sha': 'd75ade173c8429876f90739ed830d62193271bae', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.016606', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1540036Z 2025-08-21 21:57:45,016 - INFO - āœ… Tagged current release: proteinfold/results-d75ade173c8429876f90739ed830d62193271bae +2025-08-21T21:57:45.1540281Z 2025-08-21 21:57:45,016 - INFO - Processing: crisprseq/results-72134bbf6f2c31c0275bd576e04a945525637d0e +2025-08-21T21:57:45.1541005Z 2025-08-21 21:57:45,016 - INFO - DRY RUN: Would tag objects in crisprseq/results-72134bbf6f2c31c0275bd576e04a945525637d0e with {'pipeline': 'crisprseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.016696', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1541537Z 2025-08-21 21:57:45,016 - WARNING - šŸ—‘ļø Tagged orphaned directory: crisprseq/results-72134bbf6f2c31c0275bd576e04a945525637d0e +2025-08-21T21:57:45.1541771Z 2025-08-21 21:57:45,016 - INFO - Processing: bacass/results-d230ebf3d77e030bdcd0d002ef082a3870c68d99 +2025-08-21T21:57:45.1542624Z 2025-08-21 21:57:45,016 - INFO - DRY RUN: Would tag objects in bacass/results-d230ebf3d77e030bdcd0d002ef082a3870c68d99 with {'pipeline': 'bacass', 'release': '2.3.0', 'sha': 'd230ebf3d77e030bdcd0d002ef082a3870c68d99', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.016791', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1542983Z 2025-08-21 21:57:45,016 - INFO - āœ… Tagged current release: bacass/results-d230ebf3d77e030bdcd0d002ef082a3870c68d99 +2025-08-21T21:57:45.1543223Z 2025-08-21 21:57:45,016 - INFO - Processing: reportho/results-c308178cfbb0f4474a9f11fea7185391ba9275ed +2025-08-21T21:57:45.1544173Z 2025-08-21 21:57:45,016 - INFO - DRY RUN: Would tag objects in reportho/results-c308178cfbb0f4474a9f11fea7185391ba9275ed with {'pipeline': 'reportho', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.016879', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1544622Z 2025-08-21 21:57:45,016 - WARNING - šŸ—‘ļø Tagged orphaned directory: reportho/results-c308178cfbb0f4474a9f11fea7185391ba9275ed +2025-08-21T21:57:45.1544869Z 2025-08-21 21:57:45,016 - INFO - Processing: crisprseq/results-c5d26a8f45f97a65a8a4d115a76a249dd8c90a85 +2025-08-21T21:57:45.1545715Z 2025-08-21 21:57:45,016 - INFO - DRY RUN: Would tag objects in crisprseq/results-c5d26a8f45f97a65a8a4d115a76a249dd8c90a85 with {'pipeline': 'crisprseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.016969', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1546122Z 2025-08-21 21:57:45,017 - WARNING - šŸ—‘ļø Tagged orphaned directory: crisprseq/results-c5d26a8f45f97a65a8a4d115a76a249dd8c90a85 +2025-08-21T21:57:45.1546377Z 2025-08-21 21:57:45,017 - INFO - Processing: crisprseq/results-c8a217958d18c2dcd84368b2b60097ada3ccfdff +2025-08-21T21:57:45.1547110Z 2025-08-21 21:57:45,017 - INFO - DRY RUN: Would tag objects in crisprseq/results-c8a217958d18c2dcd84368b2b60097ada3ccfdff with {'pipeline': 'crisprseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.017060', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1547512Z 2025-08-21 21:57:45,017 - WARNING - šŸ—‘ļø Tagged orphaned directory: crisprseq/results-c8a217958d18c2dcd84368b2b60097ada3ccfdff +2025-08-21T21:57:45.1547750Z 2025-08-21 21:57:45,017 - INFO - Processing: ampliseq/results-80b3cb8b05d3b596bd0a52866e7febe40ea497db +2025-08-21T21:57:45.1548623Z 2025-08-21 21:57:45,017 - INFO - DRY RUN: Would tag objects in ampliseq/results-80b3cb8b05d3b596bd0a52866e7febe40ea497db with {'pipeline': 'ampliseq', 'release': '2.1.1', 'sha': '80b3cb8b05d3b596bd0a52866e7febe40ea497db', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.017146', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1549127Z 2025-08-21 21:57:45,017 - INFO - āœ… Tagged current release: ampliseq/results-80b3cb8b05d3b596bd0a52866e7febe40ea497db +2025-08-21T21:57:45.1549443Z 2025-08-21 21:57:45,017 - INFO - Processing: denovotranscript/results-test-0465bf865238fcec868323cda8ce968d7fff2307 +2025-08-21T21:57:45.1550253Z 2025-08-21 21:57:45,017 - INFO - DRY RUN: Would tag objects in denovotranscript/results-test-0465bf865238fcec868323cda8ce968d7fff2307 with {'pipeline': 'denovotranscript', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.017233', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1550724Z 2025-08-21 21:57:45,017 - WARNING - šŸ—‘ļø Tagged orphaned directory: denovotranscript/results-test-0465bf865238fcec868323cda8ce968d7fff2307 +2025-08-21T21:57:45.1550992Z 2025-08-21 21:57:45,017 - INFO - Processing: genomeassembler/results-8d1fd6c25a63480f571ed83fc0607bceaeb5e147 +2025-08-21T21:57:45.1551778Z 2025-08-21 21:57:45,017 - INFO - DRY RUN: Would tag objects in genomeassembler/results-8d1fd6c25a63480f571ed83fc0607bceaeb5e147 with {'pipeline': 'genomeassembler', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.017325', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1552322Z 2025-08-21 21:57:45,017 - WARNING - šŸ—‘ļø Tagged orphaned directory: genomeassembler/results-8d1fd6c25a63480f571ed83fc0607bceaeb5e147 +2025-08-21T21:57:45.1552583Z 2025-08-21 21:57:45,017 - INFO - Processing: metatdenovo/results-10eab6d7ac6a05cc9a4b9bebfa99fae7c3f64a4b +2025-08-21T21:57:45.1553482Z 2025-08-21 21:57:45,017 - INFO - DRY RUN: Would tag objects in metatdenovo/results-10eab6d7ac6a05cc9a4b9bebfa99fae7c3f64a4b with {'pipeline': 'metatdenovo', 'release': '1.0.1', 'sha': '10eab6d7ac6a05cc9a4b9bebfa99fae7c3f64a4b', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.017414', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1553874Z 2025-08-21 21:57:45,017 - INFO - āœ… Tagged current release: metatdenovo/results-10eab6d7ac6a05cc9a4b9bebfa99fae7c3f64a4b +2025-08-21T21:57:45.1554125Z 2025-08-21 21:57:45,017 - INFO - Processing: raredisease/results-dc7219d70971ccac454ed04c2239c288e32be903 +2025-08-21T21:57:45.1555117Z 2025-08-21 21:57:45,017 - INFO - DRY RUN: Would tag objects in raredisease/results-dc7219d70971ccac454ed04c2239c288e32be903 with {'pipeline': 'raredisease', 'release': '2.6.0', 'sha': 'dc7219d70971ccac454ed04c2239c288e32be903', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.017535', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1555500Z 2025-08-21 21:57:45,017 - INFO - āœ… Tagged current release: raredisease/results-dc7219d70971ccac454ed04c2239c288e32be903 +2025-08-21T21:57:45.1555733Z 2025-08-21 21:57:45,017 - INFO - Processing: mhcquant/results-a2235d555c1bc6618ded2d922176d7401eccdd50 +2025-08-21T21:57:45.1556599Z 2025-08-21 21:57:45,017 - INFO - DRY RUN: Would tag objects in mhcquant/results-a2235d555c1bc6618ded2d922176d7401eccdd50 with {'pipeline': 'mhcquant', 'release': '2.4.0', 'sha': 'a2235d555c1bc6618ded2d922176d7401eccdd50', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.017631', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1556964Z 2025-08-21 21:57:45,017 - INFO - āœ… Tagged current release: mhcquant/results-a2235d555c1bc6618ded2d922176d7401eccdd50 +2025-08-21T21:57:45.1557192Z 2025-08-21 21:57:45,017 - INFO - Processing: bacass/results-c81202b7702c67d0e829085685083847b9e59435 +2025-08-21T21:57:45.1558018Z 2025-08-21 21:57:45,017 - INFO - DRY RUN: Would tag objects in bacass/results-c81202b7702c67d0e829085685083847b9e59435 with {'pipeline': 'bacass', 'release': '2.3.1', 'sha': 'c81202b7702c67d0e829085685083847b9e59435', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.017714', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1558365Z 2025-08-21 21:57:45,017 - INFO - āœ… Tagged current release: bacass/results-c81202b7702c67d0e829085685083847b9e59435 +2025-08-21T21:57:45.1558645Z 2025-08-21 21:57:45,017 - INFO - Processing: methylseq/results-335f2a865a07a4b1b084830149412e404a736db2-bwameth-CPU +2025-08-21T21:57:45.1559539Z 2025-08-21 21:57:45,017 - INFO - DRY RUN: Would tag objects in methylseq/results-335f2a865a07a4b1b084830149412e404a736db2-bwameth-CPU with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.017801', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1560006Z 2025-08-21 21:57:45,017 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-335f2a865a07a4b1b084830149412e404a736db2-bwameth-CPU +2025-08-21T21:57:45.1560230Z 2025-08-21 21:57:45,017 - INFO - Processing: mag/results-409d36e985e8762373533852bcec10a78434ba8e +2025-08-21T21:57:45.1560905Z 2025-08-21 21:57:45,017 - INFO - DRY RUN: Would tag objects in mag/results-409d36e985e8762373533852bcec10a78434ba8e with {'pipeline': 'mag', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.017888', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1561282Z 2025-08-21 21:57:45,017 - WARNING - šŸ—‘ļø Tagged orphaned directory: mag/results-409d36e985e8762373533852bcec10a78434ba8e +2025-08-21T21:57:45.1561653Z 2025-08-21 21:57:45,017 - INFO - Processing: methylseq/results-a1aaa924eeeaf6526d69af3a625bcc61676b150a +2025-08-21T21:57:45.1562537Z 2025-08-21 21:57:45,017 - INFO - DRY RUN: Would tag objects in methylseq/results-a1aaa924eeeaf6526d69af3a625bcc61676b150a with {'pipeline': 'methylseq', 'release': '2.2.0', 'sha': 'a1aaa924eeeaf6526d69af3a625bcc61676b150a', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.017980', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1562911Z 2025-08-21 21:57:45,018 - INFO - āœ… Tagged current release: methylseq/results-a1aaa924eeeaf6526d69af3a625bcc61676b150a +2025-08-21T21:57:45.1563155Z 2025-08-21 21:57:45,018 - INFO - Processing: ampliseq/results-0473e157ac9a7b1d36845ff9f8fa7ac843d3b234 +2025-08-21T21:57:45.1564026Z 2025-08-21 21:57:45,018 - INFO - DRY RUN: Would tag objects in ampliseq/results-0473e157ac9a7b1d36845ff9f8fa7ac843d3b234 with {'pipeline': 'ampliseq', 'release': '2.11.0', 'sha': '0473e157ac9a7b1d36845ff9f8fa7ac843d3b234', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.018071', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1564397Z 2025-08-21 21:57:45,018 - INFO - āœ… Tagged current release: ampliseq/results-0473e157ac9a7b1d36845ff9f8fa7ac843d3b234 +2025-08-21T21:57:45.1564681Z 2025-08-21 21:57:45,018 - INFO - Processing: methylseq/results-fd056660f7680072e86ef1d7bd0ac903a377c53e-bwameth-CPU +2025-08-21T21:57:45.1565555Z 2025-08-21 21:57:45,018 - INFO - DRY RUN: Would tag objects in methylseq/results-fd056660f7680072e86ef1d7bd0ac903a377c53e-bwameth-CPU with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.018162', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1566015Z 2025-08-21 21:57:45,018 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-fd056660f7680072e86ef1d7bd0ac903a377c53e-bwameth-CPU +2025-08-21T21:57:45.1566250Z 2025-08-21 21:57:45,018 - INFO - Processing: rnavar/results-85b98d51c6bdcbbe9780490d6484c4e50c3c182c +2025-08-21T21:57:45.1567108Z 2025-08-21 21:57:45,018 - INFO - DRY RUN: Would tag objects in rnavar/results-85b98d51c6bdcbbe9780490d6484c4e50c3c182c with {'pipeline': 'rnavar', 'release': '1.0.0', 'sha': '85b98d51c6bdcbbe9780490d6484c4e50c3c182c', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.018253', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1567466Z 2025-08-21 21:57:45,018 - INFO - āœ… Tagged current release: rnavar/results-85b98d51c6bdcbbe9780490d6484c4e50c3c182c +2025-08-21T21:57:45.1567713Z 2025-08-21 21:57:45,018 - INFO - Processing: demultiplex/results-512ea7e7b0787140b7e51854553e78f936286e49 +2025-08-21T21:57:45.1568589Z 2025-08-21 21:57:45,018 - INFO - DRY RUN: Would tag objects in demultiplex/results-512ea7e7b0787140b7e51854553e78f936286e49 with {'pipeline': 'demultiplex', 'release': '1.5.0', 'sha': '512ea7e7b0787140b7e51854553e78f936286e49', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.018342', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1569079Z 2025-08-21 21:57:45,018 - INFO - āœ… Tagged current release: demultiplex/results-512ea7e7b0787140b7e51854553e78f936286e49 +2025-08-21T21:57:45.1569353Z 2025-08-21 21:57:45,018 - INFO - Processing: diaproteomics/results-47ac20ca5d6c4c788a7bea4c49644096b2c80b61 +2025-08-21T21:57:45.1570252Z 2025-08-21 21:57:45,018 - INFO - DRY RUN: Would tag objects in diaproteomics/results-47ac20ca5d6c4c788a7bea4c49644096b2c80b61 with {'pipeline': 'diaproteomics', 'release': '1.2.3', 'sha': '47ac20ca5d6c4c788a7bea4c49644096b2c80b61', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.018432', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1570649Z 2025-08-21 21:57:45,018 - INFO - āœ… Tagged current release: diaproteomics/results-47ac20ca5d6c4c788a7bea4c49644096b2c80b61 +2025-08-21T21:57:45.1570890Z 2025-08-21 21:57:45,018 - INFO - Processing: cutandrun/results-506a325350fe1ac2d99d998adf8f1e2f010892f5 +2025-08-21T21:57:45.1571768Z 2025-08-21 21:57:45,018 - INFO - DRY RUN: Would tag objects in cutandrun/results-506a325350fe1ac2d99d998adf8f1e2f010892f5 with {'pipeline': 'cutandrun', 'release': '3.2', 'sha': '506a325350fe1ac2d99d998adf8f1e2f010892f5', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.018535', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1572247Z 2025-08-21 21:57:45,018 - INFO - āœ… Tagged current release: cutandrun/results-506a325350fe1ac2d99d998adf8f1e2f010892f5 +2025-08-21T21:57:45.1572520Z 2025-08-21 21:57:45,018 - INFO - Processing: denovotranscript/results-a1ec673188e309a82f4a56c3c726375134dbbbfb +2025-08-21T21:57:45.1573307Z 2025-08-21 21:57:45,018 - INFO - DRY RUN: Would tag objects in denovotranscript/results-a1ec673188e309a82f4a56c3c726375134dbbbfb with {'pipeline': 'denovotranscript', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.018622', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1573748Z 2025-08-21 21:57:45,018 - WARNING - šŸ—‘ļø Tagged orphaned directory: denovotranscript/results-a1ec673188e309a82f4a56c3c726375134dbbbfb +2025-08-21T21:57:45.1573998Z 2025-08-21 21:57:45,018 - INFO - Processing: eager/results-37e860d0ebd4989accf9a0fa0bdba22d953027bc +2025-08-21T21:57:45.1574846Z 2025-08-21 21:57:45,018 - INFO - DRY RUN: Would tag objects in eager/results-37e860d0ebd4989accf9a0fa0bdba22d953027bc with {'pipeline': 'eager', 'release': '2.4.2', 'sha': '37e860d0ebd4989accf9a0fa0bdba22d953027bc', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.018711', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1575306Z 2025-08-21 21:57:45,018 - INFO - āœ… Tagged current release: eager/results-37e860d0ebd4989accf9a0fa0bdba22d953027bc +2025-08-21T21:57:45.1575570Z 2025-08-21 21:57:45,018 - INFO - Processing: metapep/results-test-b4a9a295b47d49fa8f7ae7ee5dd0b96858bd7a31 +2025-08-21T21:57:45.1576314Z 2025-08-21 21:57:45,018 - INFO - DRY RUN: Would tag objects in metapep/results-test-b4a9a295b47d49fa8f7ae7ee5dd0b96858bd7a31 with {'pipeline': 'metapep', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.018798', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1576751Z 2025-08-21 21:57:45,018 - WARNING - šŸ—‘ļø Tagged orphaned directory: metapep/results-test-b4a9a295b47d49fa8f7ae7ee5dd0b96858bd7a31 +2025-08-21T21:57:45.1576893Z 2025-08-21 21:57:45,018 - INFO - Processing: rnaseq/results-dev +2025-08-21T21:57:45.1577465Z 2025-08-21 21:57:45,018 - INFO - DRY RUN: Would tag objects in rnaseq/results-dev with {'pipeline': 'rnaseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.018890', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1577714Z 2025-08-21 21:57:45,018 - WARNING - šŸ—‘ļø Tagged orphaned directory: rnaseq/results-dev +2025-08-21T21:57:45.1577973Z 2025-08-21 21:57:45,018 - INFO - Processing: crisprseq/results-0ce0ed0e3dfd95becfced933ffabd2ef38a05382 +2025-08-21T21:57:45.1578835Z 2025-08-21 21:57:45,018 - INFO - DRY RUN: Would tag objects in crisprseq/results-0ce0ed0e3dfd95becfced933ffabd2ef38a05382 with {'pipeline': 'crisprseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.018977', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1579266Z 2025-08-21 21:57:45,019 - WARNING - šŸ—‘ļø Tagged orphaned directory: crisprseq/results-0ce0ed0e3dfd95becfced933ffabd2ef38a05382 +2025-08-21T21:57:45.1579507Z 2025-08-21 21:57:45,019 - INFO - Processing: mhcquant/results-8447c4d8073fd939febbd2935eb64baf76e5e02a +2025-08-21T21:57:45.1580376Z 2025-08-21 21:57:45,019 - INFO - DRY RUN: Would tag objects in mhcquant/results-8447c4d8073fd939febbd2935eb64baf76e5e02a with {'pipeline': 'mhcquant', 'release': '2.2.0', 'sha': '8447c4d8073fd939febbd2935eb64baf76e5e02a', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.019042', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1580743Z 2025-08-21 21:57:45,019 - INFO - āœ… Tagged current release: mhcquant/results-8447c4d8073fd939febbd2935eb64baf76e5e02a +2025-08-21T21:57:45.1580971Z 2025-08-21 21:57:45,019 - INFO - Processing: mag/results-8c0f1fedf2d86ad17032c45add7851578022972a +2025-08-21T21:57:45.1581796Z 2025-08-21 21:57:45,019 - INFO - DRY RUN: Would tag objects in mag/results-8c0f1fedf2d86ad17032c45add7851578022972a with {'pipeline': 'mag', 'release': '1.1.2', 'sha': '8c0f1fedf2d86ad17032c45add7851578022972a', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.019095', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1582302Z 2025-08-21 21:57:45,019 - INFO - āœ… Tagged current release: mag/results-8c0f1fedf2d86ad17032c45add7851578022972a +2025-08-21T21:57:45.1582528Z 2025-08-21 21:57:45,019 - INFO - Processing: mag/results-bc469f2adfd1ea21e84fed36b46a42dd22b705ee +2025-08-21T21:57:45.1583218Z 2025-08-21 21:57:45,019 - INFO - DRY RUN: Would tag objects in mag/results-bc469f2adfd1ea21e84fed36b46a42dd22b705ee with {'pipeline': 'mag', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.019146', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1583600Z 2025-08-21 21:57:45,019 - WARNING - šŸ—‘ļø Tagged orphaned directory: mag/results-bc469f2adfd1ea21e84fed36b46a42dd22b705ee +2025-08-21T21:57:45.1583862Z 2025-08-21 21:57:45,019 - INFO - Processing: hlatyping/results-7c9a2fbd404fae653d12e14db823b378512fbb40 +2025-08-21T21:57:45.1584732Z 2025-08-21 21:57:45,019 - INFO - DRY RUN: Would tag objects in hlatyping/results-7c9a2fbd404fae653d12e14db823b378512fbb40 with {'pipeline': 'hlatyping', 'release': '2.0.0', 'sha': '7c9a2fbd404fae653d12e14db823b378512fbb40', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.019198', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1585207Z 2025-08-21 21:57:45,019 - INFO - āœ… Tagged current release: hlatyping/results-7c9a2fbd404fae653d12e14db823b378512fbb40 +2025-08-21T21:57:45.1585492Z 2025-08-21 21:57:45,019 - INFO - Processing: methylseq/results-a79d8519e9999aa87f301cdc601fe43f19a77442-bismark-ARM +2025-08-21T21:57:45.1586274Z 2025-08-21 21:57:45,019 - INFO - DRY RUN: Would tag objects in methylseq/results-a79d8519e9999aa87f301cdc601fe43f19a77442-bismark-ARM with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.019251', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1586740Z 2025-08-21 21:57:45,019 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-a79d8519e9999aa87f301cdc601fe43f19a77442-bismark-ARM +2025-08-21T21:57:45.1586899Z 2025-08-21 21:57:45,019 - INFO - Processing: createtaxdb/results-dev +2025-08-21T21:57:45.1587501Z 2025-08-21 21:57:45,019 - INFO - DRY RUN: Would tag objects in createtaxdb/results-dev with {'pipeline': 'createtaxdb', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.019312', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1587770Z 2025-08-21 21:57:45,019 - WARNING - šŸ—‘ļø Tagged orphaned directory: createtaxdb/results-dev +2025-08-21T21:57:45.1588022Z 2025-08-21 21:57:45,019 - INFO - Processing: raredisease/results-1489b71cc0e15ade7e98a834df0170b650aa932c +2025-08-21T21:57:45.1589034Z 2025-08-21 21:57:45,019 - INFO - DRY RUN: Would tag objects in raredisease/results-1489b71cc0e15ade7e98a834df0170b650aa932c with {'pipeline': 'raredisease', 'release': '2.0.1', 'sha': '1489b71cc0e15ade7e98a834df0170b650aa932c', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.019368', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1589518Z 2025-08-21 21:57:45,019 - INFO - āœ… Tagged current release: raredisease/results-1489b71cc0e15ade7e98a834df0170b650aa932c +2025-08-21T21:57:45.1589766Z 2025-08-21 21:57:45,019 - INFO - Processing: crisprseq/results-be6922eba2c65f69d99ca25fb60c90dff92e7aa0 +2025-08-21T21:57:45.1590497Z 2025-08-21 21:57:45,019 - INFO - DRY RUN: Would tag objects in crisprseq/results-be6922eba2c65f69d99ca25fb60c90dff92e7aa0 with {'pipeline': 'crisprseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.019424', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1590909Z 2025-08-21 21:57:45,019 - WARNING - šŸ—‘ļø Tagged orphaned directory: crisprseq/results-be6922eba2c65f69d99ca25fb60c90dff92e7aa0 +2025-08-21T21:57:45.1591144Z 2025-08-21 21:57:45,019 - INFO - Processing: sarek/results-6c0d335e17fb4406f527540631da7b26a5fe1464 +2025-08-21T21:57:45.1591985Z 2025-08-21 21:57:45,019 - INFO - DRY RUN: Would tag objects in sarek/results-6c0d335e17fb4406f527540631da7b26a5fe1464 with {'pipeline': 'sarek', 'release': '3.2.1', 'sha': '6c0d335e17fb4406f527540631da7b26a5fe1464', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.019480', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1592334Z 2025-08-21 21:57:45,019 - INFO - āœ… Tagged current release: sarek/results-6c0d335e17fb4406f527540631da7b26a5fe1464 +2025-08-21T21:57:45.1592608Z 2025-08-21 21:57:45,019 - INFO - Processing: genomeassembler/results-3f1f59ddfbf92836cea735aff5a67b6212fed9f9 +2025-08-21T21:57:45.1593542Z 2025-08-21 21:57:45,019 - INFO - DRY RUN: Would tag objects in genomeassembler/results-3f1f59ddfbf92836cea735aff5a67b6212fed9f9 with {'pipeline': 'genomeassembler', 'release': '1.0.1', 'sha': '3f1f59ddfbf92836cea735aff5a67b6212fed9f9', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.019562', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1593952Z 2025-08-21 21:57:45,019 - INFO - āœ… Tagged current release: genomeassembler/results-3f1f59ddfbf92836cea735aff5a67b6212fed9f9 +2025-08-21T21:57:45.1594206Z 2025-08-21 21:57:45,019 - INFO - Processing: oncoanalyser/results-0d0dc258ce4b378fc721cf14dae837c58539b0c7 +2025-08-21T21:57:45.1595201Z 2025-08-21 21:57:45,019 - INFO - DRY RUN: Would tag objects in oncoanalyser/results-0d0dc258ce4b378fc721cf14dae837c58539b0c7 with {'pipeline': 'oncoanalyser', 'release': '2.1.0', 'sha': '0d0dc258ce4b378fc721cf14dae837c58539b0c7', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.019618', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1595587Z 2025-08-21 21:57:45,019 - INFO - āœ… Tagged current release: oncoanalyser/results-0d0dc258ce4b378fc721cf14dae837c58539b0c7 +2025-08-21T21:57:45.1595820Z 2025-08-21 21:57:45,019 - INFO - Processing: quantms/results-600505011027ab196bb18b1320607468bdae951a +2025-08-21T21:57:45.1596642Z 2025-08-21 21:57:45,019 - INFO - DRY RUN: Would tag objects in quantms/results-600505011027ab196bb18b1320607468bdae951a with {'pipeline': 'quantms', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.019672', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1597047Z 2025-08-21 21:57:45,019 - WARNING - šŸ—‘ļø Tagged orphaned directory: quantms/results-600505011027ab196bb18b1320607468bdae951a +2025-08-21T21:57:45.1597336Z 2025-08-21 21:57:45,019 - INFO - Processing: denovotranscript/results-test-3a9248719c5b557689a71c8398084eb56882fd5c +2025-08-21T21:57:45.1598146Z 2025-08-21 21:57:45,019 - INFO - DRY RUN: Would tag objects in denovotranscript/results-test-3a9248719c5b557689a71c8398084eb56882fd5c with {'pipeline': 'denovotranscript', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.019728', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1598608Z 2025-08-21 21:57:45,019 - WARNING - šŸ—‘ļø Tagged orphaned directory: denovotranscript/results-test-3a9248719c5b557689a71c8398084eb56882fd5c +2025-08-21T21:57:45.1598883Z 2025-08-21 21:57:45,019 - INFO - Processing: genomeassembler/results-dev +2025-08-21T21:57:45.1599518Z 2025-08-21 21:57:45,019 - INFO - DRY RUN: Would tag objects in genomeassembler/results-dev with {'pipeline': 'genomeassembler', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.019799', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1599805Z 2025-08-21 21:57:45,019 - WARNING - šŸ—‘ļø Tagged orphaned directory: genomeassembler/results-dev +2025-08-21T21:57:45.1600025Z 2025-08-21 21:57:45,019 - INFO - Processing: mag/results-e72890089a1fb69d32f2cf0762739c824412bf2b +2025-08-21T21:57:45.1600844Z 2025-08-21 21:57:45,019 - INFO - DRY RUN: Would tag objects in mag/results-e72890089a1fb69d32f2cf0762739c824412bf2b with {'pipeline': 'mag', 'release': '2.5.1', 'sha': 'e72890089a1fb69d32f2cf0762739c824412bf2b', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.019925', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1601198Z 2025-08-21 21:57:45,019 - INFO - āœ… Tagged current release: mag/results-e72890089a1fb69d32f2cf0762739c824412bf2b +2025-08-21T21:57:45.1601450Z 2025-08-21 21:57:45,020 - INFO - Processing: createtaxdb/results-253fd508ad533cda0853bbb05890f82f1336b93c +2025-08-21T21:57:45.1602192Z 2025-08-21 21:57:45,020 - INFO - DRY RUN: Would tag objects in createtaxdb/results-253fd508ad533cda0853bbb05890f82f1336b93c with {'pipeline': 'createtaxdb', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.020051', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1602611Z 2025-08-21 21:57:45,020 - WARNING - šŸ—‘ļø Tagged orphaned directory: createtaxdb/results-253fd508ad533cda0853bbb05890f82f1336b93c +2025-08-21T21:57:45.1602851Z 2025-08-21 21:57:45,020 - INFO - Processing: airrflow/results-a8dc190bc8c55a4a3559195454c14cfa857e04fe +2025-08-21T21:57:45.1603579Z 2025-08-21 21:57:45,020 - INFO - DRY RUN: Would tag objects in airrflow/results-a8dc190bc8c55a4a3559195454c14cfa857e04fe with {'pipeline': 'airrflow', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.020195', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1603979Z 2025-08-21 21:57:45,020 - WARNING - šŸ—‘ļø Tagged orphaned directory: airrflow/results-a8dc190bc8c55a4a3559195454c14cfa857e04fe +2025-08-21T21:57:45.1604223Z 2025-08-21 21:57:45,020 - INFO - Processing: mhcquant/results-3feaf7c2c8e05fb5b6f256e218dae3fa0c108878 +2025-08-21T21:57:45.1605189Z 2025-08-21 21:57:45,020 - INFO - DRY RUN: Would tag objects in mhcquant/results-3feaf7c2c8e05fb5b6f256e218dae3fa0c108878 with {'pipeline': 'mhcquant', 'release': '2.4.1', 'sha': '3feaf7c2c8e05fb5b6f256e218dae3fa0c108878', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.020325', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1605566Z 2025-08-21 21:57:45,020 - INFO - āœ… Tagged current release: mhcquant/results-3feaf7c2c8e05fb5b6f256e218dae3fa0c108878 +2025-08-21T21:57:45.1605913Z 2025-08-21 21:57:45,020 - INFO - Processing: sarek/results-71fac185a93e7f31213ca77610a05b7f1489a31e +2025-08-21T21:57:45.1606765Z 2025-08-21 21:57:45,020 - INFO - DRY RUN: Would tag objects in sarek/results-71fac185a93e7f31213ca77610a05b7f1489a31e with {'pipeline': 'sarek', 'release': '3.2.0', 'sha': '71fac185a93e7f31213ca77610a05b7f1489a31e', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.020439', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1607117Z 2025-08-21 21:57:45,020 - INFO - āœ… Tagged current release: sarek/results-71fac185a93e7f31213ca77610a05b7f1489a31e +2025-08-21T21:57:45.1607368Z 2025-08-21 21:57:45,020 - INFO - Processing: phaseimpute/results-8632ed3864211ed5c6cde8f8f29f58471e0a2fae +2025-08-21T21:57:45.1608115Z 2025-08-21 21:57:45,020 - INFO - DRY RUN: Would tag objects in phaseimpute/results-8632ed3864211ed5c6cde8f8f29f58471e0a2fae with {'pipeline': 'phaseimpute', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.020581', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1608537Z 2025-08-21 21:57:45,020 - WARNING - šŸ—‘ļø Tagged orphaned directory: phaseimpute/results-8632ed3864211ed5c6cde8f8f29f58471e0a2fae +2025-08-21T21:57:45.1608898Z 2025-08-21 21:57:45,020 - INFO - Processing: rnaseq/results-1f3f64dac72d5ae8c15f19246fa5f564c9e063d7 +2025-08-21T21:57:45.1609755Z 2025-08-21 21:57:45,020 - INFO - DRY RUN: Would tag objects in rnaseq/results-1f3f64dac72d5ae8c15f19246fa5f564c9e063d7 with {'pipeline': 'rnaseq', 'release': '3.16.1', 'sha': '1f3f64dac72d5ae8c15f19246fa5f564c9e063d7', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.020677', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1610114Z 2025-08-21 21:57:45,020 - INFO - āœ… Tagged current release: rnaseq/results-1f3f64dac72d5ae8c15f19246fa5f564c9e063d7 +2025-08-21T21:57:45.1610403Z 2025-08-21 21:57:45,020 - INFO - Processing: methylseq/results-da77307d967426cb5a774d5de9c351537e775c65-bwameth-CPU +2025-08-21T21:57:45.1611182Z 2025-08-21 21:57:45,020 - INFO - DRY RUN: Would tag objects in methylseq/results-da77307d967426cb5a774d5de9c351537e775c65-bwameth-CPU with {'pipeline': 'methylseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.020772', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1611651Z 2025-08-21 21:57:45,020 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylseq/results-da77307d967426cb5a774d5de9c351537e775c65-bwameth-CPU +2025-08-21T21:57:45.1611872Z 2025-08-21 21:57:45,020 - INFO - Processing: mag/results-8e3f760f23daed13777a0ca1895ef78429618ab8 +2025-08-21T21:57:45.1612696Z 2025-08-21 21:57:45,020 - INFO - DRY RUN: Would tag objects in mag/results-8e3f760f23daed13777a0ca1895ef78429618ab8 with {'pipeline': 'mag', 'release': '3.0.3', 'sha': '8e3f760f23daed13777a0ca1895ef78429618ab8', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.020894', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1613040Z 2025-08-21 21:57:45,020 - INFO - āœ… Tagged current release: mag/results-8e3f760f23daed13777a0ca1895ef78429618ab8 +2025-08-21T21:57:45.1613293Z 2025-08-21 21:57:45,020 - INFO - Processing: pixelator/results-626f93638c6f64863ac4fafb2770f043076e3418 +2025-08-21T21:57:45.1614024Z 2025-08-21 21:57:45,021 - INFO - DRY RUN: Would tag objects in pixelator/results-626f93638c6f64863ac4fafb2770f043076e3418 with {'pipeline': 'pixelator', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.021028', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1614426Z 2025-08-21 21:57:45,021 - WARNING - šŸ—‘ļø Tagged orphaned directory: pixelator/results-626f93638c6f64863ac4fafb2770f043076e3418 +2025-08-21T21:57:45.1614574Z 2025-08-21 21:57:45,021 - INFO - Processing: ampliseq/results-dev +2025-08-21T21:57:45.1615254Z 2025-08-21 21:57:45,021 - INFO - DRY RUN: Would tag objects in ampliseq/results-dev with {'pipeline': 'ampliseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.021162', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1615514Z 2025-08-21 21:57:45,021 - WARNING - šŸ—‘ļø Tagged orphaned directory: ampliseq/results-dev +2025-08-21T21:57:45.1615886Z 2025-08-21 21:57:45,021 - INFO - Processing: ampliseq/results-fa76f73ba2bf32fc03dd89d2a22e8a191683687d +2025-08-21T21:57:45.1616612Z 2025-08-21 21:57:45,021 - INFO - DRY RUN: Would tag objects in ampliseq/results-fa76f73ba2bf32fc03dd89d2a22e8a191683687d with {'pipeline': 'ampliseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.021294', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1617018Z 2025-08-21 21:57:45,021 - WARNING - šŸ—‘ļø Tagged orphaned directory: ampliseq/results-fa76f73ba2bf32fc03dd89d2a22e8a191683687d +2025-08-21T21:57:45.1617244Z 2025-08-21 21:57:45,021 - INFO - Processing: eager/results-43a239bd132b4a6ccf791d7052f537f3d22b700c +2025-08-21T21:57:45.1618089Z 2025-08-21 21:57:45,021 - INFO - DRY RUN: Would tag objects in eager/results-43a239bd132b4a6ccf791d7052f537f3d22b700c with {'pipeline': 'eager', 'release': '2.4.4', 'sha': '43a239bd132b4a6ccf791d7052f537f3d22b700c', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.021429', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1618547Z 2025-08-21 21:57:45,021 - INFO - āœ… Tagged current release: eager/results-43a239bd132b4a6ccf791d7052f537f3d22b700c +2025-08-21T21:57:45.1618787Z 2025-08-21 21:57:45,021 - INFO - Processing: methylong/results-1256a3372761d0d7c9b511213cc8cc7f179421fe +2025-08-21T21:57:45.1619511Z 2025-08-21 21:57:45,021 - INFO - DRY RUN: Would tag objects in methylong/results-1256a3372761d0d7c9b511213cc8cc7f179421fe with {'pipeline': 'methylong', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.021582', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1619911Z 2025-08-21 21:57:45,021 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylong/results-1256a3372761d0d7c9b511213cc8cc7f179421fe +2025-08-21T21:57:45.1620156Z 2025-08-21 21:57:45,021 - INFO - Processing: phaseimpute/results-55a8d5b46759087d89e035d84d5822a461e16767 +2025-08-21T21:57:45.1620911Z 2025-08-21 21:57:45,021 - INFO - DRY RUN: Would tag objects in phaseimpute/results-55a8d5b46759087d89e035d84d5822a461e16767 with {'pipeline': 'phaseimpute', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.021720', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1621323Z 2025-08-21 21:57:45,021 - WARNING - šŸ—‘ļø Tagged orphaned directory: phaseimpute/results-55a8d5b46759087d89e035d84d5822a461e16767 +2025-08-21T21:57:45.1621561Z 2025-08-21 21:57:45,021 - INFO - Processing: atacseq/results-766424e3a3f55c28fa746da519e3e61362a78d68 +2025-08-21T21:57:45.1622402Z 2025-08-21 21:57:45,021 - INFO - DRY RUN: Would tag objects in atacseq/results-766424e3a3f55c28fa746da519e3e61362a78d68 with {'pipeline': 'atacseq', 'release': '1.2.0', 'sha': '766424e3a3f55c28fa746da519e3e61362a78d68', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.021852', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1622761Z 2025-08-21 21:57:45,021 - INFO - āœ… Tagged current release: atacseq/results-766424e3a3f55c28fa746da519e3e61362a78d68 +2025-08-21T21:57:45.1622998Z 2025-08-21 21:57:45,021 - INFO - Processing: mhcquant/results-c95201d5a57b45e97491664641be3506ef6f1d7c +2025-08-21T21:57:45.1623862Z 2025-08-21 21:57:45,021 - INFO - DRY RUN: Would tag objects in mhcquant/results-c95201d5a57b45e97491664641be3506ef6f1d7c with {'pipeline': 'mhcquant', 'release': '2.0.0', 'sha': 'c95201d5a57b45e97491664641be3506ef6f1d7c', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.021979', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1624219Z 2025-08-21 21:57:45,022 - INFO - āœ… Tagged current release: mhcquant/results-c95201d5a57b45e97491664641be3506ef6f1d7c +2025-08-21T21:57:45.1624460Z 2025-08-21 21:57:45,022 - INFO - Processing: pixelator/results-e0ab35d82e03999a6925a4a358851c0146e6abbb +2025-08-21T21:57:45.1625542Z 2025-08-21 21:57:45,022 - INFO - DRY RUN: Would tag objects in pixelator/results-e0ab35d82e03999a6925a4a358851c0146e6abbb with {'pipeline': 'pixelator', 'release': '1.1.0', 'sha': 'e0ab35d82e03999a6925a4a358851c0146e6abbb', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.022107', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1625932Z 2025-08-21 21:57:45,022 - INFO - āœ… Tagged current release: pixelator/results-e0ab35d82e03999a6925a4a358851c0146e6abbb +2025-08-21T21:57:45.1626171Z 2025-08-21 21:57:45,022 - INFO - Processing: funcscan/results-eb8f79ce5a966f5a01b398dfe7d881c04b697192 +2025-08-21T21:57:45.1627043Z 2025-08-21 21:57:45,022 - INFO - DRY RUN: Would tag objects in funcscan/results-eb8f79ce5a966f5a01b398dfe7d881c04b697192 with {'pipeline': 'funcscan', 'release': '1.1.3', 'sha': 'eb8f79ce5a966f5a01b398dfe7d881c04b697192', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.022234', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1627406Z 2025-08-21 21:57:45,022 - INFO - āœ… Tagged current release: funcscan/results-eb8f79ce5a966f5a01b398dfe7d881c04b697192 +2025-08-21T21:57:45.1627647Z 2025-08-21 21:57:45,022 - INFO - Processing: ampliseq/results-78b7514ceeba80efb66b0e973e5321878cb9b0ba +2025-08-21T21:57:45.1628520Z 2025-08-21 21:57:45,022 - INFO - DRY RUN: Would tag objects in ampliseq/results-78b7514ceeba80efb66b0e973e5321878cb9b0ba with {'pipeline': 'ampliseq', 'release': '2.5.0', 'sha': '78b7514ceeba80efb66b0e973e5321878cb9b0ba', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.022362', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1629002Z 2025-08-21 21:57:45,022 - INFO - āœ… Tagged current release: ampliseq/results-78b7514ceeba80efb66b0e973e5321878cb9b0ba +2025-08-21T21:57:45.1629237Z 2025-08-21 21:57:45,022 - INFO - Processing: scrnaseq/results-4171377f40d629d43d4ca71654a7ea06e5619a09 +2025-08-21T21:57:45.1630090Z 2025-08-21 21:57:45,022 - INFO - DRY RUN: Would tag objects in scrnaseq/results-4171377f40d629d43d4ca71654a7ea06e5619a09 with {'pipeline': 'scrnaseq', 'release': '2.7.1', 'sha': '4171377f40d629d43d4ca71654a7ea06e5619a09', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.022492', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1630459Z 2025-08-21 21:57:45,022 - INFO - āœ… Tagged current release: scrnaseq/results-4171377f40d629d43d4ca71654a7ea06e5619a09 +2025-08-21T21:57:45.1630707Z 2025-08-21 21:57:45,022 - INFO - Processing: scrnaseq/results-6cccb9d37afa873b6799cd09f8589b5b129c8ac1 +2025-08-21T21:57:45.1631576Z 2025-08-21 21:57:45,022 - INFO - DRY RUN: Would tag objects in scrnaseq/results-6cccb9d37afa873b6799cd09f8589b5b129c8ac1 with {'pipeline': 'scrnaseq', 'release': '2.3.1', 'sha': '6cccb9d37afa873b6799cd09f8589b5b129c8ac1', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.022637', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1631941Z 2025-08-21 21:57:45,022 - INFO - āœ… Tagged current release: scrnaseq/results-6cccb9d37afa873b6799cd09f8589b5b129c8ac1 +2025-08-21T21:57:45.1632174Z 2025-08-21 21:57:45,022 - INFO - Processing: sarek/results-5fe5cdff171e3baed603b3990cab7f7fd3fcb992 +2025-08-21T21:57:45.1633035Z 2025-08-21 21:57:45,022 - INFO - DRY RUN: Would tag objects in sarek/results-5fe5cdff171e3baed603b3990cab7f7fd3fcb992 with {'pipeline': 'sarek', 'release': '3.5.1', 'sha': '5fe5cdff171e3baed603b3990cab7f7fd3fcb992', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.022748', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1633395Z 2025-08-21 21:57:45,022 - INFO - āœ… Tagged current release: sarek/results-5fe5cdff171e3baed603b3990cab7f7fd3fcb992 +2025-08-21T21:57:45.1633657Z 2025-08-21 21:57:45,022 - INFO - Processing: taxprofiler/results-80d2fcce1daeb95c69f16832ca253dbaeac8a11e +2025-08-21T21:57:45.1634554Z 2025-08-21 21:57:45,022 - INFO - DRY RUN: Would tag objects in taxprofiler/results-80d2fcce1daeb95c69f16832ca253dbaeac8a11e with {'pipeline': 'taxprofiler', 'release': '1.2.2', 'sha': '80d2fcce1daeb95c69f16832ca253dbaeac8a11e', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.022853', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1634937Z 2025-08-21 21:57:45,022 - INFO - āœ… Tagged current release: taxprofiler/results-80d2fcce1daeb95c69f16832ca253dbaeac8a11e +2025-08-21T21:57:45.1635406Z 2025-08-21 21:57:45,022 - INFO - Processing: diaproteomics/results-39db11edcd318870329a5ab91518d4d076539de4 +2025-08-21T21:57:45.1636321Z 2025-08-21 21:57:45,022 - INFO - DRY RUN: Would tag objects in diaproteomics/results-39db11edcd318870329a5ab91518d4d076539de4 with {'pipeline': 'diaproteomics', 'release': '1.0.0', 'sha': '39db11edcd318870329a5ab91518d4d076539de4', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.022955', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1636709Z 2025-08-21 21:57:45,022 - INFO - āœ… Tagged current release: diaproteomics/results-39db11edcd318870329a5ab91518d4d076539de4 +2025-08-21T21:57:45.1636960Z 2025-08-21 21:57:45,023 - INFO - Processing: phaseimpute/results-05a2a4cf0e610dbb5a336167224b703e0505a56b +2025-08-21T21:57:45.1637704Z 2025-08-21 21:57:45,023 - INFO - DRY RUN: Would tag objects in phaseimpute/results-05a2a4cf0e610dbb5a336167224b703e0505a56b with {'pipeline': 'phaseimpute', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.023045', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1638241Z 2025-08-21 21:57:45,023 - WARNING - šŸ—‘ļø Tagged orphaned directory: phaseimpute/results-05a2a4cf0e610dbb5a336167224b703e0505a56b +2025-08-21T21:57:45.1638466Z 2025-08-21 21:57:45,023 - INFO - Processing: mag/results-18a1645fa3e0cc6ea417f009d592f82bbe7b57f2 +2025-08-21T21:57:45.1639296Z 2025-08-21 21:57:45,023 - INFO - DRY RUN: Would tag objects in mag/results-18a1645fa3e0cc6ea417f009d592f82bbe7b57f2 with {'pipeline': 'mag', 'release': '2.4.0', 'sha': '18a1645fa3e0cc6ea417f009d592f82bbe7b57f2', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.023141', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1639637Z 2025-08-21 21:57:45,023 - INFO - āœ… Tagged current release: mag/results-18a1645fa3e0cc6ea417f009d592f82bbe7b57f2 +2025-08-21T21:57:45.1639878Z 2025-08-21 21:57:45,023 - INFO - Processing: airrflow/results-11d4b9b0d6d3335d62ee17dff2697a0b5c2f2f75 +2025-08-21T21:57:45.1640605Z 2025-08-21 21:57:45,023 - INFO - DRY RUN: Would tag objects in airrflow/results-11d4b9b0d6d3335d62ee17dff2697a0b5c2f2f75 with {'pipeline': 'airrflow', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.023229', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1641013Z 2025-08-21 21:57:45,023 - WARNING - šŸ—‘ļø Tagged orphaned directory: airrflow/results-11d4b9b0d6d3335d62ee17dff2697a0b5c2f2f75 +2025-08-21T21:57:45.1641254Z 2025-08-21 21:57:45,023 - INFO - Processing: detaxizer/results-69f308c6dd5681af2216e5315c9ffa8d03dea808 +2025-08-21T21:57:45.1642126Z 2025-08-21 21:57:45,023 - INFO - DRY RUN: Would tag objects in detaxizer/results-69f308c6dd5681af2216e5315c9ffa8d03dea808 with {'pipeline': 'detaxizer', 'release': '1.1.0', 'sha': '69f308c6dd5681af2216e5315c9ffa8d03dea808', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.023318', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1642490Z 2025-08-21 21:57:45,023 - INFO - āœ… Tagged current release: detaxizer/results-69f308c6dd5681af2216e5315c9ffa8d03dea808 +2025-08-21T21:57:45.1642728Z 2025-08-21 21:57:45,023 - INFO - Processing: fetchngs/results-27067828746a19484d40d4d175f7e14044e5beb3 +2025-08-21T21:57:45.1643583Z 2025-08-21 21:57:45,023 - INFO - DRY RUN: Would tag objects in fetchngs/results-27067828746a19484d40d4d175f7e14044e5beb3 with {'pipeline': 'fetchngs', 'release': '1.10.0', 'sha': '27067828746a19484d40d4d175f7e14044e5beb3', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.023404', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1643941Z 2025-08-21 21:57:45,023 - INFO - āœ… Tagged current release: fetchngs/results-27067828746a19484d40d4d175f7e14044e5beb3 +2025-08-21T21:57:45.1644208Z 2025-08-21 21:57:45,023 - INFO - Processing: cutandrun/results-42502fb44975e930eec865353c5481f472bcf766 +2025-08-21T21:57:45.1645277Z 2025-08-21 21:57:45,023 - INFO - DRY RUN: Would tag objects in cutandrun/results-42502fb44975e930eec865353c5481f472bcf766 with {'pipeline': 'cutandrun', 'release': '3.1', 'sha': '42502fb44975e930eec865353c5481f472bcf766', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.023488', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1645652Z 2025-08-21 21:57:45,023 - INFO - āœ… Tagged current release: cutandrun/results-42502fb44975e930eec865353c5481f472bcf766 +2025-08-21T21:57:45.1645896Z 2025-08-21 21:57:45,023 - INFO - Processing: smrnaseq/results-f7022abd9fc1a6db6f4ca114c17368dbbe8ca4f8 +2025-08-21T21:57:45.1646763Z 2025-08-21 21:57:45,023 - INFO - DRY RUN: Would tag objects in smrnaseq/results-f7022abd9fc1a6db6f4ca114c17368dbbe8ca4f8 with {'pipeline': 'smrnaseq', 'release': '2.2.1', 'sha': 'f7022abd9fc1a6db6f4ca114c17368dbbe8ca4f8', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.023602', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1647131Z 2025-08-21 21:57:45,023 - INFO - āœ… Tagged current release: smrnaseq/results-f7022abd9fc1a6db6f4ca114c17368dbbe8ca4f8 +2025-08-21T21:57:45.1647377Z 2025-08-21 21:57:45,023 - INFO - Processing: funcscan/results-ec1f1b61515d1e6b458fbb17bd087da0b75e0085 +2025-08-21T21:57:45.1648258Z 2025-08-21 21:57:45,023 - INFO - DRY RUN: Would tag objects in funcscan/results-ec1f1b61515d1e6b458fbb17bd087da0b75e0085 with {'pipeline': 'funcscan', 'release': '1.1.5', 'sha': 'ec1f1b61515d1e6b458fbb17bd087da0b75e0085', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.023692', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1648735Z 2025-08-21 21:57:45,023 - INFO - āœ… Tagged current release: funcscan/results-ec1f1b61515d1e6b458fbb17bd087da0b75e0085 +2025-08-21T21:57:45.1649009Z 2025-08-21 21:57:45,023 - INFO - Processing: genomeassembler/results-669f92da4f2ff6959004dde5cd5bf47bf87cd0d0 +2025-08-21T21:57:45.1649786Z 2025-08-21 21:57:45,023 - INFO - DRY RUN: Would tag objects in genomeassembler/results-669f92da4f2ff6959004dde5cd5bf47bf87cd0d0 with {'pipeline': 'genomeassembler', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.023778', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1650235Z 2025-08-21 21:57:45,023 - WARNING - šŸ—‘ļø Tagged orphaned directory: genomeassembler/results-669f92da4f2ff6959004dde5cd5bf47bf87cd0d0 +2025-08-21T21:57:45.1650482Z 2025-08-21 21:57:45,023 - INFO - Processing: pixelator/results-bf492303a94d145d16ece9c91ce35a4705741654 +2025-08-21T21:57:45.1651350Z 2025-08-21 21:57:45,023 - INFO - DRY RUN: Would tag objects in pixelator/results-bf492303a94d145d16ece9c91ce35a4705741654 with {'pipeline': 'pixelator', 'release': '1.3.0', 'sha': 'bf492303a94d145d16ece9c91ce35a4705741654', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.023871', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1651714Z 2025-08-21 21:57:45,023 - INFO - āœ… Tagged current release: pixelator/results-bf492303a94d145d16ece9c91ce35a4705741654 +2025-08-21T21:57:45.1651962Z 2025-08-21 21:57:45,023 - INFO - Processing: taxprofiler/results-45ce748534872c5105a5d3a94b83f47cd44f8826 +2025-08-21T21:57:45.1652848Z 2025-08-21 21:57:45,023 - INFO - DRY RUN: Would tag objects in taxprofiler/results-45ce748534872c5105a5d3a94b83f47cd44f8826 with {'pipeline': 'taxprofiler', 'release': '1.1.6', 'sha': '45ce748534872c5105a5d3a94b83f47cd44f8826', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.023961', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1653228Z 2025-08-21 21:57:45,023 - INFO - āœ… Tagged current release: taxprofiler/results-45ce748534872c5105a5d3a94b83f47cd44f8826 +2025-08-21T21:57:45.1653455Z 2025-08-21 21:57:45,024 - INFO - Processing: rnaseq/results-eb5392adde8e606539701a2d6327b8cb3e89c6e2 +2025-08-21T21:57:45.1654167Z 2025-08-21 21:57:45,024 - INFO - DRY RUN: Would tag objects in rnaseq/results-eb5392adde8e606539701a2d6327b8cb3e89c6e2 with {'pipeline': 'rnaseq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.024048', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1654556Z 2025-08-21 21:57:45,024 - WARNING - šŸ—‘ļø Tagged orphaned directory: rnaseq/results-eb5392adde8e606539701a2d6327b8cb3e89c6e2 +2025-08-21T21:57:45.1654787Z 2025-08-21 21:57:45,024 - INFO - Processing: atacseq/results-f327c86324427c64716be09c98634ae0bc8165f6 +2025-08-21T21:57:45.1655854Z 2025-08-21 21:57:45,024 - INFO - DRY RUN: Would tag objects in atacseq/results-f327c86324427c64716be09c98634ae0bc8165f6 with {'pipeline': 'atacseq', 'release': '1.2.2', 'sha': 'f327c86324427c64716be09c98634ae0bc8165f6', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.024137', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1656224Z 2025-08-21 21:57:45,024 - INFO - āœ… Tagged current release: atacseq/results-f327c86324427c64716be09c98634ae0bc8165f6 +2025-08-21T21:57:45.1656456Z 2025-08-21 21:57:45,024 - INFO - Processing: scrnaseq/results-c8f02f515d014ee2c98b401950e2cf7141a82b42 +2025-08-21T21:57:45.1657310Z 2025-08-21 21:57:45,024 - INFO - DRY RUN: Would tag objects in scrnaseq/results-c8f02f515d014ee2c98b401950e2cf7141a82b42 with {'pipeline': 'scrnaseq', 'release': '2.7.0', 'sha': 'c8f02f515d014ee2c98b401950e2cf7141a82b42', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.024224', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1657674Z 2025-08-21 21:57:45,024 - INFO - āœ… Tagged current release: scrnaseq/results-c8f02f515d014ee2c98b401950e2cf7141a82b42 +2025-08-21T21:57:45.1658043Z 2025-08-21 21:57:45,024 - INFO - Processing: mag/results-c9468cb9154402c4a4cab78664ee50c24a91f6c3 +2025-08-21T21:57:45.1658868Z 2025-08-21 21:57:45,024 - INFO - DRY RUN: Would tag objects in mag/results-c9468cb9154402c4a4cab78664ee50c24a91f6c3 with {'pipeline': 'mag', 'release': '2.3.0', 'sha': 'c9468cb9154402c4a4cab78664ee50c24a91f6c3', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.024308', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1659218Z 2025-08-21 21:57:45,024 - INFO - āœ… Tagged current release: mag/results-c9468cb9154402c4a4cab78664ee50c24a91f6c3 +2025-08-21T21:57:45.1659453Z 2025-08-21 21:57:45,024 - INFO - Processing: airrflow/results-0275b3a2eb008e493c9dd206ede500911b4ccdac +2025-08-21T21:57:45.1660180Z 2025-08-21 21:57:45,024 - INFO - DRY RUN: Would tag objects in airrflow/results-0275b3a2eb008e493c9dd206ede500911b4ccdac with {'pipeline': 'airrflow', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.024393', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1660582Z 2025-08-21 21:57:45,024 - WARNING - šŸ—‘ļø Tagged orphaned directory: airrflow/results-0275b3a2eb008e493c9dd206ede500911b4ccdac +2025-08-21T21:57:45.1660879Z 2025-08-21 21:57:45,024 - INFO - Processing: denovotranscript/results-test-ffb1ad89df62e4477bfdf9dd0616098bd5b3edf2 +2025-08-21T21:57:45.1661702Z 2025-08-21 21:57:45,024 - INFO - DRY RUN: Would tag objects in denovotranscript/results-test-ffb1ad89df62e4477bfdf9dd0616098bd5b3edf2 with {'pipeline': 'denovotranscript', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.024483', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1662170Z 2025-08-21 21:57:45,024 - WARNING - šŸ—‘ļø Tagged orphaned directory: denovotranscript/results-test-ffb1ad89df62e4477bfdf9dd0616098bd5b3edf2 +2025-08-21T21:57:45.1662428Z 2025-08-21 21:57:45,024 - INFO - Processing: taxprofiler/results-e93eee3a324eaccb32281b407577dbb8dbbd635f +2025-08-21T21:57:45.1663185Z 2025-08-21 21:57:45,024 - INFO - DRY RUN: Would tag objects in taxprofiler/results-e93eee3a324eaccb32281b407577dbb8dbbd635f with {'pipeline': 'taxprofiler', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.024588', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1663596Z 2025-08-21 21:57:45,024 - WARNING - šŸ—‘ļø Tagged orphaned directory: taxprofiler/results-e93eee3a324eaccb32281b407577dbb8dbbd635f +2025-08-21T21:57:45.1663840Z 2025-08-21 21:57:45,024 - INFO - Processing: bamtofastq/results-008854c4eb65d5f5197f9f827c0ba108981d4b51 +2025-08-21T21:57:45.1664568Z 2025-08-21 21:57:45,024 - INFO - DRY RUN: Would tag objects in bamtofastq/results-008854c4eb65d5f5197f9f827c0ba108981d4b51 with {'pipeline': 'bamtofastq', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.024677', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1665184Z 2025-08-21 21:57:45,024 - WARNING - šŸ—‘ļø Tagged orphaned directory: bamtofastq/results-008854c4eb65d5f5197f9f827c0ba108981d4b51 +2025-08-21T21:57:45.1665422Z 2025-08-21 21:57:45,024 - INFO - Processing: mag/results-3b4dd3469725654d67e06b3853ba460d64c80788 +2025-08-21T21:57:45.1666246Z 2025-08-21 21:57:45,024 - INFO - DRY RUN: Would tag objects in mag/results-3b4dd3469725654d67e06b3853ba460d64c80788 with {'pipeline': 'mag', 'release': '2.2.0', 'sha': '3b4dd3469725654d67e06b3853ba460d64c80788', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.024772', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1666594Z 2025-08-21 21:57:45,024 - INFO - āœ… Tagged current release: mag/results-3b4dd3469725654d67e06b3853ba460d64c80788 +2025-08-21T21:57:45.1666836Z 2025-08-21 21:57:45,024 - INFO - Processing: methylong/results-f48b21e6a41757689b3951e23c28d70e0b274004 +2025-08-21T21:57:45.1667566Z 2025-08-21 21:57:45,024 - INFO - DRY RUN: Would tag objects in methylong/results-f48b21e6a41757689b3951e23c28d70e0b274004 with {'pipeline': 'methylong', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.024861', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1668084Z 2025-08-21 21:57:45,024 - WARNING - šŸ—‘ļø Tagged orphaned directory: methylong/results-f48b21e6a41757689b3951e23c28d70e0b274004 +2025-08-21T21:57:45.1668328Z 2025-08-21 21:57:45,024 - INFO - Processing: nanostring/results-7451087e71bd653b7341a5e5485d91af387923a9 +2025-08-21T21:57:45.1669201Z 2025-08-21 21:57:45,024 - INFO - DRY RUN: Would tag objects in nanostring/results-7451087e71bd653b7341a5e5485d91af387923a9 with {'pipeline': 'nanostring', 'release': '1.1.1', 'sha': '7451087e71bd653b7341a5e5485d91af387923a9', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.024949', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1669569Z 2025-08-21 21:57:45,024 - INFO - āœ… Tagged current release: nanostring/results-7451087e71bd653b7341a5e5485d91af387923a9 +2025-08-21T21:57:45.1669832Z 2025-08-21 21:57:45,025 - INFO - Processing: bamtofastq/results-869832186b25d2ccbcd31d5f69edacc1ba32b718 +2025-08-21T21:57:45.1670719Z 2025-08-21 21:57:45,025 - INFO - DRY RUN: Would tag objects in bamtofastq/results-869832186b25d2ccbcd31d5f69edacc1ba32b718 with {'pipeline': 'bamtofastq', 'release': '2.2.0', 'sha': '869832186b25d2ccbcd31d5f69edacc1ba32b718', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.025035', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1671090Z 2025-08-21 21:57:45,025 - INFO - āœ… Tagged current release: bamtofastq/results-869832186b25d2ccbcd31d5f69edacc1ba32b718 +2025-08-21T21:57:45.1671325Z 2025-08-21 21:57:45,025 - INFO - Processing: scrnaseq/results-90cb6a48155248286c85395c53a201c3a31b2258 +2025-08-21T21:57:45.1672175Z 2025-08-21 21:57:45,025 - INFO - DRY RUN: Would tag objects in scrnaseq/results-90cb6a48155248286c85395c53a201c3a31b2258 with {'pipeline': 'scrnaseq', 'release': '2.5.1', 'sha': '90cb6a48155248286c85395c53a201c3a31b2258', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.025122', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1672541Z 2025-08-21 21:57:45,025 - INFO - āœ… Tagged current release: scrnaseq/results-90cb6a48155248286c85395c53a201c3a31b2258 +2025-08-21T21:57:45.1672798Z 2025-08-21 21:57:45,025 - INFO - Processing: taxprofiler/results-baede5b2ab39b240892e15113fb30c14771c43fb +2025-08-21T21:57:45.1673678Z 2025-08-21 21:57:45,025 - INFO - DRY RUN: Would tag objects in taxprofiler/results-baede5b2ab39b240892e15113fb30c14771c43fb with {'pipeline': 'taxprofiler', 'release': '1.1.1', 'sha': 'baede5b2ab39b240892e15113fb30c14771c43fb', 'status': 'current', 'tagged_date': '2025-08-21T21:57:45.025208', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1674056Z 2025-08-21 21:57:45,025 - INFO - āœ… Tagged current release: taxprofiler/results-baede5b2ab39b240892e15113fb30c14771c43fb +2025-08-21T21:57:45.1674340Z 2025-08-21 21:57:45,025 - INFO - Processing: denovotranscript/results-test-11b9078804f4422f2ee6320d8c7297283660adae +2025-08-21T21:57:45.1675373Z 2025-08-21 21:57:45,025 - INFO - DRY RUN: Would tag objects in denovotranscript/results-test-11b9078804f4422f2ee6320d8c7297283660adae with {'pipeline': 'denovotranscript', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.025294', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1675853Z 2025-08-21 21:57:45,025 - WARNING - šŸ—‘ļø Tagged orphaned directory: denovotranscript/results-test-11b9078804f4422f2ee6320d8c7297283660adae +2025-08-21T21:57:45.1676118Z 2025-08-21 21:57:45,025 - INFO - Processing: genomeassembler/results-528f56993779d170a348cc252334bcae1c27c59a +2025-08-21T21:57:45.1676891Z 2025-08-21 21:57:45,025 - INFO - DRY RUN: Would tag objects in genomeassembler/results-528f56993779d170a348cc252334bcae1c27c59a with {'pipeline': 'genomeassembler', 'status': 'orphaned', 'deleteme': 'true', 'tagged_date': '2025-08-21T21:57:45.025382', 'tagged_by': 'nf-core-ops-automation'} +2025-08-21T21:57:45.1677323Z 2025-08-21 21:57:45,025 - WARNING - šŸ—‘ļø Tagged orphaned directory: genomeassembler/results-528f56993779d170a348cc252334bcae1c27c59a +2025-08-21T21:57:45.1677606Z 2025-08-21 21:57:45,025 - INFO - ================================================================================ +2025-08-21T21:57:45.1677740Z 2025-08-21 21:57:45,025 - INFO - S3 RESULTS TAGGING SUMMARY +2025-08-21T21:57:45.1677887Z 2025-08-21 21:57:45,025 - INFO - ================================================================================ +2025-08-21T21:57:45.1678048Z 2025-08-21 21:57:45,025 - INFO - šŸ“Š STATISTICS: +2025-08-21T21:57:45.1678252Z 2025-08-21 21:57:45,025 - INFO - • Current releases tagged: 430 +2025-08-21T21:57:45.1678464Z 2025-08-21 21:57:45,025 - INFO - • Orphaned directories tagged: 338 +2025-08-21T21:57:45.1678636Z 2025-08-21 21:57:45,025 - INFO - • Errors encountered: 0 +2025-08-21T21:57:45.1678787Z 2025-08-21 21:57:45,025 - INFO - • Mode: DRY RUN +2025-08-21T21:57:45.1678875Z 2025-08-21 21:57:45,025 - INFO - +2025-08-21T21:57:45.1679011Z āœ… CURRENT RELEASE DIRECTORIES (430): +2025-08-21T21:57:45.1679235Z 2025-08-21 21:57:45,025 - INFO - • circdna v1.0.2 (cce84734ef50...) +2025-08-21T21:57:45.1679456Z 2025-08-21 21:57:45,025 - INFO - • nanostring v1.3.0 (e765843c16d2...) +2025-08-21T21:57:45.1679657Z 2025-08-21 21:57:45,025 - INFO - • nanoseq v1.1.0 (ad5b2bb7a37a...) +2025-08-21T21:57:45.1679900Z 2025-08-21 21:57:45,025 - INFO - • differentialabundance v1.5.0 (3dd360fed0dc...) +2025-08-21T21:57:45.1680093Z 2025-08-21 21:57:45,025 - INFO - • rnaseq v3.13.0 (14f9d26444e0...) +2025-08-21T21:57:45.1680229Z 2025-08-21 21:57:45,025 - INFO - ... and 425 more current releases +2025-08-21T21:57:45.1680307Z 2025-08-21 21:57:45,025 - INFO - +2025-08-21T21:57:45.1680471Z šŸ—‘ļø ORPHANED DIRECTORIES TO BE TAGGED (338): +2025-08-21T21:57:45.1680707Z 2025-08-21 21:57:45,025 - INFO - These directories will be tagged with 'deleteme=true' for cleanup: +2025-08-21T21:57:45.1681175Z 2025-08-21 21:57:45,025 - INFO - • airrflow/results-58fc5ad9dd91377d514831061a43f36b2c94334b (58fc5ad9dd91...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1681599Z 2025-08-21 21:57:45,025 - INFO - • sarek/results-c081571d72a49f8295f8bf8fdb08cbf60a2d5ea6 (c081571d72a4...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1681896Z 2025-08-21 21:57:45,025 - INFO - • pathogensurveillance/results-dev (dev) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1682364Z 2025-08-21 21:57:45,026 - INFO - • genomeassembler/results-6a119be1f71e796cd9b8873eee7ff5a0edd5d1d0 (6a119be1f71e...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1682595Z 2025-08-21 21:57:45,026 - INFO - • nascent/results-dev (dev) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1683017Z 2025-08-21 21:57:45,026 - INFO - • airrflow/results-1c6816c089988cc3c4048c50db6bc28592bdba9d (1c6816c08998...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1683508Z 2025-08-21 21:57:45,026 - INFO - • methylseq/results-a79d8519e9999aa87f301cdc601fe43f19a77442-bwameth-GPU (a79d8519e999...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1684023Z 2025-08-21 21:57:45,026 - INFO - • methylseq/results-fd056660f7680072e86ef1d7bd0ac903a377c53e-bismark_hisat-CPU (fd056660f768...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1684530Z 2025-08-21 21:57:45,026 - INFO - • mag/results-ffbd0831207b3c492d88e2c2610ed8b778bacd2a (ffbd0831207b...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1684767Z 2025-08-21 21:57:45,026 - INFO - • pixelator/results-dev (dev) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1685275Z 2025-08-21 21:57:45,026 - INFO - • sarek/results-502b6de340046466608930c599ff0b70044c288e (502b6de34004...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1685693Z 2025-08-21 21:57:45,026 - INFO - • sarek/results-9f11b67e24bf5300bad86c293e7e4bf1646ced8e (9f11b67e24bf...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1686123Z 2025-08-21 21:57:45,026 - INFO - • airrflow/results-df795baf77a9494af7be7ff74465f22437f5e681 (df795baf77a9...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1686582Z 2025-08-21 21:57:45,026 - INFO - • genomeassembler/results-f49ba50d8a9ad133bc85155198302b3c463fc11b (f49ba50d8a9a...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1687073Z 2025-08-21 21:57:45,026 - INFO - • methylseq/results-a79d8519e9999aa87f301cdc601fe43f19a77442-bismark-CPU (a79d8519e999...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1687620Z 2025-08-21 21:57:45,026 - INFO - • ampliseq/results-3f2f46600838809a318f42ca969c8c0e589e30ee (3f2f46600838...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1688044Z 2025-08-21 21:57:45,026 - INFO - • airrflow/results-2744dbe9edb84662fccd3fc2f6cfa0997200371b (2744dbe9edb8...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1688477Z 2025-08-21 21:57:45,026 - INFO - • pangenome/results-f2b63fe835463e71f2fc2ccb7261f1a0c1d430a4 (f2b63fe83546...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1688981Z 2025-08-21 21:57:45,026 - INFO - • methylseq/results-335f2a865a07a4b1b084830149412e404a736db2-bismark_hisat-CPU (335f2a865a07...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1689385Z 2025-08-21 21:57:45,026 - INFO - • sarek/results-9342569f18e175743abcede97f174331a9211edc (9342569f18e1...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1689886Z 2025-08-21 21:57:45,026 - INFO - • denovotranscript/results-test-b2ef239e8ececceb98fde37fd140d8291f434109 (test-b2ef239...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1690419Z 2025-08-21 21:57:45,026 - INFO - • spatialtranscriptomics/results-test-064ac4e6dd2ca40167123fbab7f4c1958f219ad3 (test-064ac4e...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1690648Z 2025-08-21 21:57:45,026 - INFO - • airrflow/results-dev (dev) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1691091Z 2025-08-21 21:57:45,026 - INFO - • createtaxdb/results-fdd09767611d5e6cc0d3ccad09b39174baa30972 (fdd09767611d...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1691516Z 2025-08-21 21:57:45,026 - INFO - • detaxizer/results-c6286cc84b4906c709f5cb15a62965a0f06ff0e4 (c6286cc84b49...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1691973Z 2025-08-21 21:57:45,026 - INFO - • genomeassembler/results-6b5f98818c465cbb9cd39b6f4a69209dbca08b8e (6b5f98818c46...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1692382Z 2025-08-21 21:57:45,026 - INFO - • sarek/results-79fd632bf4cda5aae548e6a0370f1809ef30777f (79fd632bf4cd...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1692883Z 2025-08-21 21:57:45,026 - INFO - • methylseq/results-335f2a865a07a4b1b084830149412e404a736db2-bwameth-GPU (335f2a865a07...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1693322Z 2025-08-21 21:57:45,026 - INFO - • rnaseq/results-test-86c45b8e0e0213f055118ab23dcbcf262c9159da (test-86c45b8...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1693746Z 2025-08-21 21:57:45,026 - INFO - • nanoseq/results-855ce8b4c5095c449f015699246d5bea83b3098f (855ce8b4c509...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1694160Z 2025-08-21 21:57:45,026 - INFO - • rnaseq/results-0cf9100ab62941ccb851db83ed9a6b9aa625f331 (0cf9100ab629...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1694580Z 2025-08-21 21:57:45,026 - INFO - • chipseq/results-b161a7df07b7d015e3601556ff3a2d228a913b50 (b161a7df07b7...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1695105Z 2025-08-21 21:57:45,026 - INFO - • airrflow/results-e9f4adefb15d721df4cdc2f662756dde7c7ede21 (e9f4adefb15d...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1695672Z 2025-08-21 21:57:45,026 - INFO - • taxprofiler/results-06c6f14e6b5931c4492ae4c989e3e4c32a688fb3 (06c6f14e6b59...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1695911Z 2025-08-21 21:57:45,026 - INFO - • demo/results-dev (dev) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1696320Z 2025-08-21 21:57:45,026 - INFO - • mag/results-2921b861212fe5cb99b48beca23c9c26af699d65 (2921b861212f...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1696546Z 2025-08-21 21:57:45,026 - INFO - • reportho/results-dev (dev) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1696945Z 2025-08-21 21:57:45,026 - INFO - • mag/results-32cc2cc274e1aa97e6b60d58760a79d3f1cf90e8 (32cc2cc274e1...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1697388Z 2025-08-21 21:57:45,027 - INFO - • phaseimpute/results-d09247947ce0279bce9b0a987380d341d6553cdf (d09247947ce0...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1697804Z 2025-08-21 21:57:45,027 - INFO - • sarek/results-67914f82ecae840307180d1af0fdef853f7fefdf (67914f82ecae...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1698215Z 2025-08-21 21:57:45,027 - INFO - • sarek/results-28666175d07f8b092e067532c8bb43baf579e852 (28666175d07f...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1698791Z 2025-08-21 21:57:45,027 - INFO - • drugresponseeval/results-220953d0c3d7871dd075e697e09aa2b1dbba4801 (220953d0c3d7...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1699211Z 2025-08-21 21:57:45,027 - INFO - • quantms/results-fa34d79f5071ae064d1438ad59c53b0093622ae5 (fa34d79f5071...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1699628Z 2025-08-21 21:57:45,027 - INFO - • airrflow/results-140238594f9da0865a735a328dfaefdcd1e16e2d (140238594f9d...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1700064Z 2025-08-21 21:57:45,027 - INFO - • methylong/results-f3e522ce5ecdaaeff98d4ad4868692d22d85009a (f3e522ce5ecd...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1700486Z 2025-08-21 21:57:45,027 - INFO - • rnafusion/results-72ed5b136d2ec30091a556ff3f7a541bbac09c73 (72ed5b136d2e...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1700918Z 2025-08-21 21:57:45,027 - INFO - • methylong/results-a6a38c31d63f6e9041680272ee652469ed3f8930 (a6a38c31d63f...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1701404Z 2025-08-21 21:57:45,027 - INFO - • methylseq/results-335f2a865a07a4b1b084830149412e404a736db2-bismark-ARM (335f2a865a07...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1701832Z 2025-08-21 21:57:45,027 - INFO - • airrflow/results-5d8cdb4d6b506fa59e43b93de13a819433ee2cbd (5d8cdb4d6b50...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1702310Z 2025-08-21 21:57:45,027 - INFO - • drugresponseeval/results-test-e26b32456232cb211289359a70861158307c6355 (test-e26b324...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1702749Z 2025-08-21 21:57:45,027 - INFO - • molkart/results-test-7605a53092930a0b65509c64f79834a6c8449e9b (test-7605a53...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1703153Z 2025-08-21 21:57:45,027 - INFO - • nanoseq/results-c59485c080690d591fc5c861300634063e523c81 (c59485c08069...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1703595Z 2025-08-21 21:57:45,027 - INFO - • methylseq/results-0bbf07f9de6d94800d5e0b316a2c0d1c4646a1ca (0bbf07f9de6d...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1704081Z 2025-08-21 21:57:45,027 - INFO - • multiplesequencealign/results-15c3126ec605dd661ef11773da7751516f9a076c (15c3126ec605...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1704511Z 2025-08-21 21:57:45,027 - INFO - • methylong/results-630bec9c7825feba23886d1cb43e1d20b357ebe2 (630bec9c7825...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1704924Z 2025-08-21 21:57:45,027 - INFO - • methylong/results-865f5f3d20342453b273266918afb2fd42b1f826 (865f5f3d2034...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1705450Z 2025-08-21 21:57:45,027 - INFO - • crisprseq/results-8a5b827b458590dc1b99634cbf169b8dd4a043dd (8a5b827b4585...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1705931Z 2025-08-21 21:57:45,027 - INFO - • methylseq/results-fd056660f7680072e86ef1d7bd0ac903a377c53e-bismark-ARM (fd056660f768...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1706544Z 2025-08-21 21:57:45,027 - INFO - • testpipeline/results-test-f556dbf5bdd41fb35ef532cd406a2b44a0452165 (test-f556dbf...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1706975Z 2025-08-21 21:57:45,027 - INFO - • sarek/results-4bfb25049fdd2bf31c751bafcb6a18eddebcc1d5 (4bfb25049fdd...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1707305Z 2025-08-21 21:57:45,027 - INFO - • methylseq/results-dev-bwameth-GPU (dev-bwameth-...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1707789Z 2025-08-21 21:57:45,027 - INFO - • multiplesequencealign/results-b3540dc9b25a65fd54318d7313f7af64d6e7decd (b3540dc9b25a...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1708231Z 2025-08-21 21:57:45,027 - INFO - • phaseimpute/results-cf6d3a818cacfaf3d1b8756ab13117681b0458fa (cf6d3a818cac...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1708733Z 2025-08-21 21:57:45,027 - INFO - • methylseq/results-a79d8519e9999aa87f301cdc601fe43f19a77442-bismark_hisat-CPU (a79d8519e999...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1709228Z 2025-08-21 21:57:45,027 - INFO - • denovotranscript/results-test-46e7a6f7d214b1f83efe09fde3ae3c929cca6eb8 (test-46e7a6f...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1709785Z 2025-08-21 21:57:45,027 - INFO - • crisprseq/results-cf1dc5091c5b8f4e700bbeddbda3e19509e0489f (cf1dc5091c5b...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1710272Z 2025-08-21 21:57:45,027 - INFO - • drugresponseeval/results-test-98b1acbd6ff62c314c6786321e5c30926d7e142b (test-98b1acb...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1710736Z 2025-08-21 21:57:45,027 - INFO - • genomeassembler/results-e3f540f21df755a8a12b9859019c4a5fe472db82 (e3f540f21df7...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1711160Z 2025-08-21 21:57:45,027 - INFO - • methylseq/results-345f43b8c1d9281335ab9e6ca240884f9d21bbab (345f43b8c1d9...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1711572Z 2025-08-21 21:57:45,027 - INFO - • sarek/results-5c6be78611ff40a0390952ea4bab27cd3c9d52fa (5c6be78611ff...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1712035Z 2025-08-21 21:57:45,027 - INFO - • denovotranscript/results-baeb69fd094ed125098b05dec69c4ebd2b90d701 (baeb69fd094e...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1712550Z 2025-08-21 21:57:45,027 - INFO - • methylseq/results-fd056660f7680072e86ef1d7bd0ac903a377c53e-bismark_hisat-ARM (fd056660f768...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1712988Z 2025-08-21 21:57:45,027 - INFO - • crisprseq/results-5cfc4ee1447eaab00862f1e796b02c33baffac0d (5cfc4ee1447e...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1713468Z 2025-08-21 21:57:45,028 - INFO - • methylseq/results-335f2a865a07a4b1b084830149412e404a736db2-bwameth-ARM (335f2a865a07...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1713876Z 2025-08-21 21:57:45,028 - INFO - • rnaseq/results-91c65a2535fd9973579f4469bb028f6dfa832254 (91c65a2535fd...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1714329Z 2025-08-21 21:57:45,028 - INFO - • methylseq/results-test-6a6584906e915b09bfb0824458f6f789e492e2b9 (test-6a65849...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1714737Z 2025-08-21 21:57:45,028 - INFO - • rnaseq/results-0d93da54a54fdb2c8ca34c223d144ed288261186 (0d93da54a54f...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1715259Z 2025-08-21 21:57:45,028 - INFO - • mag/results-cc4ecd46c7a9998409f575973765a8873bb71517 (cc4ecd46c7a9...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1715676Z 2025-08-21 21:57:45,028 - INFO - • sarek/results-919115fd28da375d15d2f212e82a7ea670c3f08e (919115fd28da...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1716138Z 2025-08-21 21:57:45,028 - INFO - • proteinfamilies/results-16c1ca9f4904e7930a3ee1d0cceac6a8b1e92412 (16c1ca9f4904...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1716572Z 2025-08-21 21:57:45,028 - INFO - • taxprofiler/results-8949ad471b0dc855c717a220657d282204e69dc4 (8949ad471b0d...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1716994Z 2025-08-21 21:57:45,028 - INFO - • airrflow/results-73112f91f3611bec4c936bcef67d24c6e4e134ce (73112f91f361...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1717385Z 2025-08-21 21:57:45,028 - INFO - • mag/results-dc2557b6362a02f8114c01ce7127f07385b53a96 (dc2557b6362a...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1717978Z 2025-08-21 21:57:45,028 - INFO - • testpipeline/results-test-c6b64f96dd6f32c5246c887851f8f588a9331171 (test-c6b64f9...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1718407Z 2025-08-21 21:57:45,028 - INFO - • ampliseq/results-4707d384dc73406255a2612d4c128748a96244c8 (4707d384dc73...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1718846Z 2025-08-21 21:57:45,028 - INFO - • proteinfold/results-22862926c87fceb2a96ecbece6a4e61600b7f4c9 (22862926c87f...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1719289Z 2025-08-21 21:57:45,028 - INFO - • oncoanalyser/results-8f8ffa24ffde97d1a16215292289d2f2c1ed9fda (8f8ffa24ffde...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1719721Z 2025-08-21 21:57:45,028 - INFO - • methylseq/results-d7578f04cbd0c345fc26e219baf8c72316981af7 (d7578f04cbd0...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1719952Z 2025-08-21 21:57:45,028 - INFO - • methylong/results-dev (dev) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1720381Z 2025-08-21 21:57:45,028 - INFO - • airrflow/results-db47eaaaed3c4b51f128fd76414d7465911acc32 (db47eaaaed3c...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1720930Z 2025-08-21 21:57:45,028 - INFO - • nanoseq/results-0a2fb82679ed0edda7c2ee98a27d9a2c3140b1de (0a2fb82679ed...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1721178Z 2025-08-21 21:57:45,028 - INFO - • testpipeline/results-dev (dev) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1721682Z 2025-08-21 21:57:45,028 - INFO - • methylseq/results-a79d8519e9999aa87f301cdc601fe43f19a77442-bismark_hisat-ARM (a79d8519e999...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1722116Z 2025-08-21 21:57:45,028 - INFO - • fastquorum/results-65adcb4e187aa78540d1d1fd245752337dfa11e8 (65adcb4e187a...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1722583Z 2025-08-21 21:57:45,028 - INFO - • taxprofiler/results-test-07b926a89e68bc1b0720170c0996a48b7eed618d (test-07b926a...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1723010Z 2025-08-21 21:57:45,028 - INFO - • methylseq/results-c9729e4b64db1c7ea50920a27dd8c5e3fbdd64f4 (c9729e4b64db...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1723480Z 2025-08-21 21:57:45,028 - INFO - • drugresponseeval/results-d8695a4701ba2a4f4c575aece3bb292c66317502 (d8695a4701ba...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1723945Z 2025-08-21 21:57:45,028 - INFO - • genomeassembler/results-bd82c7b62702ff088ab3fcdc157a97ff9477ff1d (bd82c7b62702...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1724349Z 2025-08-21 21:57:45,028 - INFO - • mag/results-fa4f841f32a01d21d4eeb68f16b8c81c86ce45ee (fa4f841f32a0...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1724744Z 2025-08-21 21:57:45,028 - INFO - • mag/results-fef6562d43446249bd7f109f637bd43df0965ada (fef6562d4344...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1725248Z 2025-08-21 21:57:45,028 - INFO - • sarek/results-334782319f63ee1f22f60039cb598edaee5ae32d (334782319f63...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1725678Z 2025-08-21 21:57:45,028 - INFO - • airrflow/results-2345dda77e7a4bc601b65b5d182a6efed7acc845 (2345dda77e7a...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1725994Z 2025-08-21 21:57:45,028 - INFO - • airrflow/results-test-nofusion (test-nofusio...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1726435Z 2025-08-21 21:57:45,028 - INFO - • airrflow/results-9a7ffb234dd84fec59ee51089e2b9e2d8356c5fc (9a7ffb234dd8...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1726924Z 2025-08-21 21:57:45,028 - INFO - • methylseq/results-da77307d967426cb5a774d5de9c351537e775c65-bismark-CPU (da77307d9674...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1727329Z 2025-08-21 21:57:45,028 - INFO - • sarek/results-c42f0b4e754c54f4ab9c7124634d67e0dc502663 (c42f0b4e754c...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1727755Z 2025-08-21 21:57:45,028 - INFO - • airrflow/results-9ec2002bc5f03746165b4e2e1183ebc96dc0326d (9ec2002bc5f0...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1728186Z 2025-08-21 21:57:45,029 - INFO - • crisprseq/results-cf0cff8c5b5ce34354702cd6e512b5dbaf093af2 (cf0cff8c5b5c...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1728605Z 2025-08-21 21:57:45,029 - INFO - • atacseq/results-30a165a3cc870a9ab95d6b2fe82d22a17943cd16 (30a165a3cc87...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1729205Z 2025-08-21 21:57:45,029 - INFO - • readsimulator/results-test-8ccb7a99bd09db6a7e7793c1f6a7821158e652e0 (test-8ccb7a9...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1729477Z 2025-08-21 21:57:45,029 - INFO - • pairgenomealign/results-dev (dev) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1729942Z 2025-08-21 21:57:45,029 - INFO - • testpipeline/results-test-185cc42f61019a2a182017e7a268c5b0e5815bbc (test-185cc42...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1730415Z 2025-08-21 21:57:45,029 - INFO - • taxprofiler/results-test-96dc9ecd31d47ec8703e2be554e8e6b6bd98b377 (test-96dc9ec...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1730849Z 2025-08-21 21:57:45,029 - INFO - • airrflow/results-daa1bbd2d5ea0be4d9fd1b982a18dfb8e53a2b29 (daa1bbd2d5ea...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1731270Z 2025-08-21 21:57:45,029 - INFO - • airrflow/results-8342a7cb180a44d531f5b239c88babec769f6fee (8342a7cb180a...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1731723Z 2025-08-21 21:57:45,029 - INFO - • rnaseq/results-test-b89fac32650aacc86fcda9ee77e00612a1d77066 (test-b89fac3...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1732268Z 2025-08-21 21:57:45,029 - INFO - • crisprseq/results-cba895bbdb2f333388a2702311f1a7c02f89963f (cba895bbdb2f...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1732704Z 2025-08-21 21:57:45,029 - INFO - • phaseimpute/results-116a042f0c49ffe9d121bfa34b6cf9b2a6c3a480 (116a042f0c49...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1733135Z 2025-08-21 21:57:45,029 - INFO - • bamtofastq/results-db5efc69473a48c74dfdaf70177a56939d83b414 (db5efc69473a...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1733647Z 2025-08-21 21:57:45,029 - INFO - • methylseq/results-da77307d967426cb5a774d5de9c351537e775c65-bismark_hisat-CPU (da77307d9674...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1734065Z 2025-08-21 21:57:45,029 - INFO - • ampliseq/results-61e8bc76df53531049707dca86bb8fa13882551e (61e8bc76df53...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1734498Z 2025-08-21 21:57:45,029 - INFO - • methylseq/results-f293f94207886c718f33d87c32ae15bc980503f2 (f293f9420788...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1734924Z 2025-08-21 21:57:45,029 - INFO - • pacvar/results-6fad9f5361fdc028d097ab44495bdd8aee344ffd (6fad9f5361fd...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1735581Z 2025-08-21 21:57:45,029 - INFO - • rnaseq/results-22ff499d9b3770d4fa06c203572074c3cd9d9d9d (22ff499d9b37...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1736013Z 2025-08-21 21:57:45,029 - INFO - • rangeland/results-bfabfeef971675c9fce6a6112490164a5845c603 (bfabfeef9716...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1736411Z 2025-08-21 21:57:45,029 - INFO - • mag/results-1504f9c58149de2bcfb5815d9b920c8963432a88 (1504f9c58149...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1736861Z 2025-08-21 21:57:45,029 - INFO - • readsimulator/results-8ccb7a99bd09db6a7e7793c1f6a7821158e652e0 (8ccb7a99bd09...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1737295Z 2025-08-21 21:57:45,029 - INFO - • funcscan/results-f89a8bfd2408b7f7dff7a9ad8bdcd09b7ed1189b (f89a8bfd2408...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1737755Z 2025-08-21 21:57:45,029 - INFO - • methylong/results-test-651ce97c168b9684be8a6c00e851c0240689a6d1 (test-651ce97...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1738045Z 2025-08-21 21:57:45,029 - INFO - • variantbenchmarking/results-dev (dev) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1738459Z 2025-08-21 21:57:45,029 - INFO - • sarek/results-e2778aa567007cfd75b40a4f66abe1ed818448fb (e2778aa56700...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1738787Z 2025-08-21 21:57:45,029 - INFO - • fetchngs/results-test-full-aspera (test-full-as...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1739216Z 2025-08-21 21:57:45,029 - INFO - • methylong/results-8a9dc7060f71778b1c9cf7891ab50adf43c2a375 (8a9dc7060f71...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1739641Z 2025-08-21 21:57:45,029 - INFO - • methylseq/results-b212815663f97aa3913832dba1d02a3c0a6e984d (b212815663f9...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1740243Z 2025-08-21 21:57:45,029 - INFO - • rnaseq/results-test-795793354be731e30d1dafb8fc0e1b9815a3948b (test-7957933...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1740708Z 2025-08-21 21:57:45,029 - INFO - • readsimulator/results-a1473767acf39ec6a7e2afa9641109979f5b3b99 (a1473767acf3...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1741204Z 2025-08-21 21:57:45,029 - INFO - • denovotranscript/results-test-0ac6a3fc495a6347dfa241eb553a60ba6feeeea2 (test-0ac6a3f...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1741550Z 2025-08-21 21:57:45,029 - INFO - • fetchngs/results-test-full-force-ftp (test-full-fo...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1741956Z 2025-08-21 21:57:45,029 - INFO - • mag/results-3499ce0ac8f6c7815ec6e2eda7d70982d7c46d5c (3499ce0ac8f6...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1742384Z 2025-08-21 21:57:45,029 - INFO - • nanoseq/results-5ae8db57f649cd0e9f4fa9d45227f114779fee0c (5ae8db57f649...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1742791Z 2025-08-21 21:57:45,029 - INFO - • sarek/results-261c22211d20c1662db37728cc5405bfa7b8b7e2 (261c22211d20...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1743219Z 2025-08-21 21:57:45,029 - INFO - • airrflow/results-216706e3034e4739b0b8a330a6e736d421734107 (216706e3034e...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1743776Z 2025-08-21 21:57:45,030 - INFO - • atacseq/results-test-415795d3c14fb296c6418b427279ca34ab976844 (test-415795d...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1744207Z 2025-08-21 21:57:45,030 - INFO - • mag/results-727469302c0284fd66edb3d77589d880ed69535b (727469302c02...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1744671Z 2025-08-21 21:57:45,030 - INFO - • genomeassembler/results-f92d65c76f7b4867142d8bd4e9dcdff212120b14 (f92d65c76f7b...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1745191Z 2025-08-21 21:57:45,030 - INFO - • chipseq/results-686c054c33ec1606aa05d2347460994dfa2cd618 (686c054c33ec...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1745509Z 2025-08-21 21:57:45,030 - INFO - • rnaseq/results-FINAL-FIX-TEST (FINAL-FIX-TE...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1745935Z 2025-08-21 21:57:45,030 - INFO - • methylong/results-54591ed14432e29fa7049642c791817665c05cc5 (54591ed14432...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1746269Z 2025-08-21 21:57:45,030 - INFO - • methylseq/results-dev-bwameth-CPU (dev-bwameth-...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1746712Z 2025-08-21 21:57:45,030 - INFO - • rnaseq/results-test-eb5392adde8e606539701a2d6327b8cb3e89c6e2 (test-eb5392a...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1747167Z 2025-08-21 21:57:45,030 - INFO - • fetchngs/results-test-f794ea3cb15147c339cae6225c82a408834597a3 (test-f794ea3...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1747622Z 2025-08-21 21:57:45,030 - INFO - • bamtofastq/results-test-008854c4eb65d5f5197f9f827c0ba108981d4b51 (test-008854c...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1748045Z 2025-08-21 21:57:45,030 - INFO - • rnaseq/results-fe39f59aa5911075f5bfa2c7e4435fe6ddb6812d (fe39f59aa591...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1748467Z 2025-08-21 21:57:45,030 - INFO - • mag/results-test-21c97169243b2b3a85df9f90d002c165c10a9ae1 (test-21c9716...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1749039Z 2025-08-21 21:57:45,030 - INFO - • phaseimpute/results-48eb141662ff6593615c04ef10044178e60c8f4e (48eb141662ff...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1749460Z 2025-08-21 21:57:45,030 - INFO - • rnaseq/results-738ddaa093ce85c7ea0046f57a8e19da3623f06b (738ddaa093ce...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1749898Z 2025-08-21 21:57:45,030 - INFO - • bamtofastq/results-3d1e65bfd04ed30066f0258dd793551fbba0ca4a (3d1e65bfd04e...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1750349Z 2025-08-21 21:57:45,030 - INFO - • marsseq/results-test-dda9122454b0d9e5bcdd481008c216eb52da16b2 (test-dda9122...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1750749Z 2025-08-21 21:57:45,030 - INFO - • mag/results-675b72706a9fbb134447b1b13b93ce65884c8973 (675b72706a9f...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1751061Z 2025-08-21 21:57:45,030 - INFO - • rnaseq/results-fusion-dupradar (fusion-dupra...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1751503Z 2025-08-21 21:57:45,030 - INFO - • taxprofiler/results-697647ff36461ad962a21cc57e6554d334d59b7c (697647ff3646...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1752043Z 2025-08-21 21:57:45,030 - INFO - • createtaxdb/results-93e384121e51c67101479ff1eebc86177d083786 (93e384121e51...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1752515Z 2025-08-21 21:57:45,030 - INFO - • drugresponseeval/results-00ebfddaa69eb3332d9f1eaa6a517c875807a129 (00ebfddaa69e...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1752945Z 2025-08-21 21:57:45,030 - INFO - • detaxizer/results-d4ef442ad05ca3a3da9d647e597806ed093845dd (d4ef442ad05c...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1753382Z 2025-08-21 21:57:45,030 - INFO - • createtaxdb/results-d5f5b91490aa58d3e34c8b5923cc01c96d656ea7 (d5f5b91490aa...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1753822Z 2025-08-21 21:57:45,030 - INFO - • demultiplex/results-8a2a2f0be60e5f4178f0b1e91147dc98761d1e89 (8a2a2f0be60e...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1754256Z 2025-08-21 21:57:45,030 - INFO - • nanoseq/results-47c7d850b7207864e87b4909699bd926c50626e1 (47c7d850b720...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1754722Z 2025-08-21 21:57:45,030 - INFO - • airrflow/results-test-11d4b9b0d6d3335d62ee17dff2697a0b5c2f2f75 (test-11d4b9b...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1755327Z 2025-08-21 21:57:45,030 - INFO - • sarek/results-90725eb1f28e8877d9a1c02b45ab986e2a2a12e4 (90725eb1f28e...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1755851Z 2025-08-21 21:57:45,030 - INFO - • methylseq/results-335f2a865a07a4b1b084830149412e404a736db2-bismark_hisat-ARM (335f2a865a07...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1756278Z 2025-08-21 21:57:45,030 - INFO - • ampliseq/results-3278e5b6ef1151c0ed53d7660d4d8a4879a30f9b (3278e5b6ef11...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1756701Z 2025-08-21 21:57:45,030 - INFO - • fetchngs/results-b9f830071028e423387dcd398fc67b4d28eab9e3 (b9f830071028...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1757144Z 2025-08-21 21:57:45,030 - INFO - • taxprofiler/results-4403cce6de7e6d55de609edf98c3acf00cd16bef (4403cce6de7e...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1757587Z 2025-08-21 21:57:45,030 - INFO - • molkart/results-a19ce7354c902be94f82f20bac8a358e7a77f282 (a19ce7354c90...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1758040Z 2025-08-21 21:57:45,030 - INFO - • readsimulator/results-56a7d3ff9b67caf31dbdc96c67fa894a0afc932c (56a7d3ff9b67...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1758312Z 2025-08-21 21:57:45,030 - INFO - • epitopeprediction/results-dev (dev) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1758716Z 2025-08-21 21:57:45,030 - INFO - • mag/results-d7e51ef3f0564732306cba827fb28e03af7b3bf5 (d7e51ef3f056...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1759173Z 2025-08-21 21:57:45,030 - INFO - • ampliseq/results-test-113e90bdff42a52807f5c8b3cbaafaa31c145b9d (test-113e90b...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1759427Z 2025-08-21 21:57:45,031 - INFO - • proteinfamilies/results-dev (dev) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1759998Z 2025-08-21 21:57:45,031 - INFO - • methylong/results-2f5b75f5db599f128332f5bb11a4e1ca5d47b82e (2f5b75f5db59...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1760447Z 2025-08-21 21:57:45,031 - INFO - • crisprseq/results-acf9155cd483aac0e41194bd2c6caf4841db1d5b (acf9155cd483...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1760788Z 2025-08-21 21:57:45,031 - INFO - • methylseq/results-dev-bwameth-ARM (dev-bwameth-...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1761242Z 2025-08-21 21:57:45,031 - INFO - • genomeassembler/results-656bc9065046372199400be07e0c2b29a3c99f9d (656bc9065046...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1761732Z 2025-08-21 21:57:45,031 - INFO - • drugresponseeval/results-test-d8695a4701ba2a4f4c575aece3bb292c66317502 (test-d8695a4...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1762155Z 2025-08-21 21:57:45,031 - INFO - • methylong/results-338f6c4fb9847a78e743085ba916372bff7c81c7 (338f6c4fb984...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1762561Z 2025-08-21 21:57:45,031 - INFO - • mag/results-babacaa771d53627d6342a1094396a605792dbd4 (babacaa771d5...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1763158Z 2025-08-21 21:57:45,031 - INFO - • denovotranscript/results-e693f8c1d559093f077a4dfd1fef061705b3c393 (e693f8c1d559...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1763577Z 2025-08-21 21:57:45,031 - INFO - • fetchngs/results-b234c7123c9816e248a639a2922556c86f82fd99 (b234c7123c98...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1764000Z 2025-08-21 21:57:45,031 - INFO - • funcscan/results-ba0dfcdc525b31b4074e8979049ed59ea969aff6 (ba0dfcdc525b...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1764325Z 2025-08-21 21:57:45,031 - INFO - • methylseq/results-dev-bismark-CPU (dev-bismark-...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1764785Z 2025-08-21 21:57:45,031 - INFO - • proteinfamilies/results-64e43caa8f8e579fb4d303d9122f545bda4ed0d9 (64e43caa8f8e...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1765398Z 2025-08-21 21:57:45,031 - INFO - • rangeland/results-573951aa6033849320a6eb14545daa8250eaf502 (573951aa6033...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1765656Z 2025-08-21 21:57:45,031 - INFO - • mhcquant/results-dev (dev) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1766089Z 2025-08-21 21:57:45,031 - INFO - • crisprseq/results-76e9e1058a3018efcaabec05908a381fdd378658 (76e9e1058a30...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1766492Z 2025-08-21 21:57:45,031 - INFO - • mag/results-e2244f53af8fcb3372bca1a6c9c8428ed30321c4 (e2244f53af8f...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1766892Z 2025-08-21 21:57:45,031 - INFO - • mag/results-8196d2c3cffdb41d4e512ddccc782d9daf464306 (8196d2c3cffd...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1767328Z 2025-08-21 21:57:45,031 - INFO - • methylong/results-edcebd49c0bbfe17128cd1b6e2269ff1c3fd7c0d (edcebd49c0bb...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1767749Z 2025-08-21 21:57:45,031 - INFO - • methylong/results-a186af55c938ae87849d4e02e29f0b4a42ca0134 (a186af55c938...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1768180Z 2025-08-21 21:57:45,031 - INFO - • raredisease/results-88395468484f77913aa5601d9542465fd78da41d (88395468484f...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1768735Z 2025-08-21 21:57:45,031 - INFO - • taxprofiler/results-c6dfb84c216f8d26b72d7651b620afe3c140b343 (c6dfb84c216f...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1768977Z 2025-08-21 21:57:45,031 - INFO - • raredisease/results-dev (dev) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1769260Z 2025-08-21 21:57:45,031 - INFO - • multiplesequencealign/results-dev (dev) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1769515Z 2025-08-21 21:57:45,031 - INFO - • createpanelrefs/results-dev (dev) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1769742Z 2025-08-21 21:57:45,031 - INFO - • methylseq/results-dev (dev) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1770183Z 2025-08-21 21:57:45,031 - INFO - • bamtofastq/results-b6bcae3f987d7d7cd321711940ad90f9b360597f (b6bcae3f987d...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1770646Z 2025-08-21 21:57:45,031 - INFO - • bamtofastq/results-test-db5efc69473a48c74dfdaf70177a56939d83b414 (test-db5efc6...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1771187Z 2025-08-21 21:57:45,031 - INFO - • mag/results-d423f99b8fafcbdba3676cd6f4921280e71016c8 (d423f99b8faf...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1771433Z 2025-08-21 21:57:45,031 - INFO - • sarek/results-dev (dev) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1771902Z 2025-08-21 21:57:45,031 - INFO - • genomeassembler/results-5e2d8b0ebba203e77366ff2dbcdbc786683fb36d (5e2d8b0ebba2...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1772357Z 2025-08-21 21:57:45,031 - INFO - • airrflow/results-test-e9f4adefb15d721df4cdc2f662756dde7c7ede21 (test-e9f4ade...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1772832Z 2025-08-21 21:57:45,031 - INFO - • testpipeline/results-test-3a4a19ce11b52b6a1545807723c266d4ec4d6f25 (test-3a4a19c...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1773255Z 2025-08-21 21:57:45,031 - INFO - • chipseq/results-f47e8ed0680096be2e361d4b3b63bab697e497a1 (f47e8ed06800...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1773691Z 2025-08-21 21:57:45,031 - INFO - • createtaxdb/results-73a0d574ce0700bc3df0a556ec4efb62ad00691f (73a0d574ce07...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1774240Z 2025-08-21 21:57:45,032 - INFO - • rnaseq/results-7a04c5d571bf0dd693adf6ec1a5739ffe5d8d567 (7a04c5d571bf...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1774679Z 2025-08-21 21:57:45,032 - INFO - • createtaxdb/results-c3dc901d7e19da8eb7e22a09d0040d691a73fc50 (c3dc901d7e19...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1775277Z 2025-08-21 21:57:45,032 - INFO - • methylseq/results-fd056660f7680072e86ef1d7bd0ac903a377c53e-bismark-CPU (fd056660f768...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1775678Z 2025-08-21 21:57:45,032 - INFO - • mag/results-a3c34713507c6b95535d4f346764c4be8f6cfdc1 (a3c34713507c...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1776115Z 2025-08-21 21:57:45,032 - INFO - • methylong/results-c0a4fbac5b7cd6d3dacb600b27c8fd87fd13f10b (c0a4fbac5b7c...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1776546Z 2025-08-21 21:57:45,032 - INFO - • raredisease/results-47a41a53ecf3c10408efb6a26a3cb2608d71289d (47a41a53ecf3...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1776794Z 2025-08-21 21:57:45,032 - INFO - • metatdenovo/results-dev (dev) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1777014Z 2025-08-21 21:57:45,032 - INFO - • mag/results-dev (dev) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1777506Z 2025-08-21 21:57:45,032 - INFO - • multiplesequencealign/results-fbcaf895496df59a521b96dd9b11f3634f9e62be (fbcaf895496d...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1777764Z 2025-08-21 21:57:45,032 - INFO - • drugresponseeval/results-dev (dev) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1778159Z 2025-08-21 21:57:45,032 - INFO - • mag/results-997847ed4714a644c96d87348926e6966160f5dc (997847ed4714...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1778603Z 2025-08-21 21:57:45,032 - INFO - • metapep/results-test-84feafc9476978c2a1b84849871a553cffd9762a (test-84feafc...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1779040Z 2025-08-21 21:57:45,032 - INFO - • raredisease/results-0a330371c69e31e385db5c119d2b850f1154a7e8 (0a330371c69e...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1779289Z 2025-08-21 21:57:45,032 - INFO - • oncoanalyser/results-dev (dev) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1779693Z 2025-08-21 21:57:45,032 - INFO - • mag/results-2963ba0050da439ebb667769116f98ffa22b9a45 (2963ba0050da...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1780181Z 2025-08-21 21:57:45,032 - INFO - • denovotranscript/results-test-a5240dc6fa5fcd158375fa668b14bbc77c2e8ff6 (test-a5240dc...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1780628Z 2025-08-21 21:57:45,032 - INFO - • readsimulator/results-f538a00fa47c7b14cdf55443fd4004e5c1d24880 (f538a00fa47c...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1781082Z 2025-08-21 21:57:45,032 - INFO - • genomeassembler/results-05c63822d3d35e3a06b9de6ed434796ecbfa5e18 (05c63822d3d3...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1781490Z 2025-08-21 21:57:45,032 - INFO - • mag/results-2c1554fe6c8daa83050f71ea8254de3b118ab5e9 (2c1554fe6c8d...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1781957Z 2025-08-21 21:57:45,032 - INFO - • methylseq/results-dev-bismark_hisat-CPU (dev-bismark_...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1782309Z 2025-08-21 21:57:45,032 - INFO - • methylseq/results-dev-bismark_hisat-ARM (dev-bismark_...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1782731Z 2025-08-21 21:57:45,032 - INFO - • rnaseq/results-93452bcf677c7b933f1d21f1bb4b1688787a905f (93452bcf677c...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1783149Z 2025-08-21 21:57:45,032 - INFO - • quantms/results-6ffb0c92964cb70e212e18225c769b9e26cb1c11 (6ffb0c92964c...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1783588Z 2025-08-21 21:57:45,032 - INFO - • taxprofiler/results-b280ccbf544d88463f996d8f823bbf5910f2afcb (b280ccbf544d...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1784059Z 2025-08-21 21:57:45,032 - INFO - • testpipeline/results-test-df381cf381ac158b5046fce4246bb8adfa494c9f (test-df381cf...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1784507Z 2025-08-21 21:57:45,032 - INFO - • fetchngs/results-test-27067828746a19484d40d4d175f7e14044e5beb3 (test-2706782...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1785054Z 2025-08-21 21:57:45,032 - INFO - • pacvar/results-test-aee0823afa21785b2eb7abbdf1e6c801d5a2e06b (test-aee0823...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1785649Z 2025-08-21 21:57:45,032 - INFO - • drugresponseeval/results-34b5b1a8a7b9e49d59920ecf92a7d9c7c09b4d3c (34b5b1a8a7b9...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1786071Z 2025-08-21 21:57:45,032 - INFO - • ampliseq/results-9162fe0d035f2b598646366608eb19be88ac5d72 (9162fe0d035f...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1786493Z 2025-08-21 21:57:45,032 - INFO - • airrflow/results-61e295421683bfcdfcba80f6bb4b034b9b0dfe20 (61e295421683...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1786913Z 2025-08-21 21:57:45,032 - INFO - • airrflow/results-ee4391c0accaed97ca08729960c43fca0ddd4c8e (ee4391c0acca...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1787347Z 2025-08-21 21:57:45,032 - INFO - • fastquorum/results-1df25801bdbd804e98815ab691618382735f00ef (1df25801bdbd...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1787773Z 2025-08-21 21:57:45,032 - INFO - • sarek/results-2934fcfa2add3295a8bf3abbfe5bb5519e237f2d (2934fcfa2add...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1788218Z 2025-08-21 21:57:45,032 - INFO - • createtaxdb/results-c67e935993f957401a3b1adfa48eb9585f47d855 (c67e935993f9...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1788651Z 2025-08-21 21:57:45,033 - INFO - • rnaseq/results-test-48fb9b4ea640f029f48c79283217d0f20661d38e (test-48fb9b4...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1789090Z 2025-08-21 21:57:45,033 - INFO - • sarek/results-test-59026dc07633edb83aab3bfb2f65f79db38437a1 (test-59026dc...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1789514Z 2025-08-21 21:57:45,033 - INFO - • ampliseq/results-cf80e34cd14d3c3fcbc6f3388b9bd86d68f0a384 (cf80e34cd14d...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1790000Z 2025-08-21 21:57:45,033 - INFO - • methylseq/results-a79d8519e9999aa87f301cdc601fe43f19a77442-bwameth-ARM (a79d8519e999...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1790488Z 2025-08-21 21:57:45,033 - INFO - • methylong/results-45644d7550e1fe91ba84f88ffe0b4768c7d7bc98 (45644d7550e1...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1790922Z 2025-08-21 21:57:45,033 - INFO - • sarek/results-575c707e49e1ede524bdf0994806e274e792bb99 (575c707e49e1...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1791326Z 2025-08-21 21:57:45,033 - INFO - • mag/results-8392af99b1addcc911bddd19da2179ed13e6253c (8392af99b1ad...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1791812Z 2025-08-21 21:57:45,033 - INFO - • methylseq/results-fd056660f7680072e86ef1d7bd0ac903a377c53e-bwameth-ARM (fd056660f768...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1792041Z 2025-08-21 21:57:45,033 - INFO - • scrnaseq/results-dev (dev) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1792461Z 2025-08-21 21:57:45,033 - INFO - • rnaseq/results-a7e73a0e96e59dca95c126a6d828a65347dff9fb (a7e73a0e96e5...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1792879Z 2025-08-21 21:57:45,033 - INFO - • ampliseq/results-55d72f40502b200fc39c09c358b26c58a93a9169 (55d72f40502b...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1793428Z 2025-08-21 21:57:45,033 - INFO - • methylong/results-8f1e613ead272c0c62dcf44c1c44538a6c546e1d (8f1e613ead27...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1793908Z 2025-08-21 21:57:45,033 - INFO - • proteinfamilies/results-f2dab99978a0737d0731fbd0de702b2172ba8253 (f2dab99978a0...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1794356Z 2025-08-21 21:57:45,033 - INFO - • scdownstream/results-8e13eabb49deaea3aa998a1406b15dc51227df9b (8e13eabb49de...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1794847Z 2025-08-21 21:57:45,033 - INFO - • methylseq/results-a79d8519e9999aa87f301cdc601fe43f19a77442-bwameth-CPU (a79d8519e999...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1795545Z 2025-08-21 21:57:45,033 - INFO - • methylseq/results-fd056660f7680072e86ef1d7bd0ac903a377c53e-bwameth-GPU (fd056660f768...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1796045Z 2025-08-21 21:57:45,033 - INFO - • methylseq/results-335f2a865a07a4b1b084830149412e404a736db2-bismark-CPU (335f2a865a07...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1796502Z 2025-08-21 21:57:45,033 - INFO - • metapep/results-test-8923d02a29e20990954c5d8b053e612999e43212 (test-8923d02...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1797185Z 2025-08-21 21:57:45,033 - INFO - • taxprofiler/results-cc34d41200136ec3a4b7f79da7f876ee9c79d97b (cc34d4120013...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1797627Z 2025-08-21 21:57:45,033 - INFO - • crisprseq/results-647b7437dcbf0e52a09623dd8b7439782ed6b1b7 (647b7437dcbf...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1798050Z 2025-08-21 21:57:45,033 - INFO - • circrna/results-18e580e3f81c3c37189c49033948616a773404af (18e580e3f81c...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1798284Z 2025-08-21 21:57:45,033 - INFO - • rnafusion/results-dev (dev) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1798716Z 2025-08-21 21:57:45,033 - INFO - • rnaseq/results-f06f298abe39a6efd5e1d2f31e7ea1e09911dd2e (f06f298abe39...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1799151Z 2025-08-21 21:57:45,033 - INFO - • rnaseq/results-b2a5b081aa21e65cdad4a19b87e5d70b6b990a15 (b2a5b081aa21...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1799603Z 2025-08-21 21:57:45,033 - INFO - • methylong/results-d26e6509b2d1fbfa31fbf3b712041a4cb060197a (d26e6509b2d1...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1800097Z 2025-08-21 21:57:45,033 - INFO - • multiplesequencealign/results-c2ef09268c2dc9df2e62bac9b4d08de44d3c75fa (c2ef09268c2d...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1800521Z 2025-08-21 21:57:45,033 - INFO - • sarek/results-1cb015a499a97ab9e60148c37a4aabba5859dcb3 (1cb015a499a9...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1801013Z 2025-08-21 21:57:45,033 - INFO - • drugresponseeval/results-test-34b5b1a8a7b9e49d59920ecf92a7d9c7c09b4d3c (test-34b5b1a...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1801443Z 2025-08-21 21:57:45,033 - INFO - • methylong/results-36b68c0a81dce08f926101bd3e30be06d6d04a30 (36b68c0a81dc...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1801884Z 2025-08-21 21:57:45,033 - INFO - • rnaseq/results-test-a10f41afa204538d5dcc89a5910c299d68f94f41 (test-a10f41a...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1802303Z 2025-08-21 21:57:45,033 - INFO - • mag/results-375c018a396fc485bcd2cb501b89306f7f71bf46 (375c018a396f...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1802720Z 2025-08-21 21:57:45,033 - INFO - • nanoseq/results-9753f1cc740c649e3a7f125585b5c61814585758 (9753f1cc740c...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1803152Z 2025-08-21 21:57:45,033 - INFO - • createtaxdb/results-97816135d29e5998547dca757bcbc11ee3061932 (97816135d29e...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1803603Z 2025-08-21 21:57:45,033 - INFO - • genomeassembler/results-4561d9ad3363c2609614b52cfbfe2a043628d2ae (4561d9ad3363...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1804092Z 2025-08-21 21:57:45,033 - INFO - • multiplesequencealign/results-8c109a21c562fe8f65cf0392b559f96c705418aa (8c109a21c562...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1804418Z 2025-08-21 21:57:45,034 - INFO - • methylseq/results-dev-bismark-ARM (dev-bismark-...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1805120Z 2025-08-21 21:57:45,034 - INFO - • sarek/results-aa9e1891e5c6988168e845795a7bdb618e15b597 (aa9e1891e5c6...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1805585Z 2025-08-21 21:57:45,034 - INFO - • phaseimpute/results-95d932f5378c3358a97ba703b3b6d1e856c3a368 (95d932f5378c...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1806078Z 2025-08-21 21:57:45,034 - INFO - • drugresponseeval/results-test-00ebfddaa69eb3332d9f1eaa6a517c875807a129 (test-00ebfdd...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1806299Z 2025-08-21 21:57:45,034 - INFO - • rnavar/results-dev (dev) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1806718Z 2025-08-21 21:57:45,034 - INFO - • funcscan/results-0e0bf847b885cdf6562084284817e3923956bd3a (0e0bf847b885...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1807143Z 2025-08-21 21:57:45,034 - INFO - • nanoseq/results-8ba80ba07335c25970f2ed23dec4c639ae8cc8a8 (8ba80ba07335...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1807538Z 2025-08-21 21:57:45,034 - INFO - • mag/results-277e1368a825be4ffe3cb2d04943f0f94119110b (277e1368a825...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1808107Z 2025-08-21 21:57:45,034 - INFO - • createtaxdb/results-07fb75f09e87719225fbf8754430c8f33f0938aa (07fb75f09e87...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1808544Z 2025-08-21 21:57:45,034 - INFO - • phaseimpute/results-10985a2aae1f977f953fdad74b44ac0c39d00579 (10985a2aae1f...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1808887Z 2025-08-21 21:57:45,034 - INFO - • rnaseq/results-paramsText-json-test (paramsText-j...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1809335Z 2025-08-21 21:57:45,034 - INFO - • airrflow/results-test-0121f8e4ee2bcd595f6ec34774e138658f54052a (test-0121f8e...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1809732Z 2025-08-21 21:57:45,034 - INFO - • mag/results-2d76836185303d17093eaac9de7198048c8dfb82 (2d7683618530...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1810169Z 2025-08-21 21:57:45,034 - INFO - • viralrecon/results-8abaab4f5a53575e015838fe208d5726afb49f9b (8abaab4f5a53...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1810640Z 2025-08-21 21:57:45,034 - INFO - • methylong/results-test-630bec9c7825feba23886d1cb43e1d20b357ebe2 (test-630bec9...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1811097Z 2025-08-21 21:57:45,034 - INFO - • marsseq/results-test-0ca38c3bd5a35e7abcf2e83dc1ff7c1e73e50856 (test-0ca38c3...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1811528Z 2025-08-21 21:57:45,034 - INFO - • crisprseq/results-72134bbf6f2c31c0275bd576e04a945525637d0e (72134bbf6f2c...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1811951Z 2025-08-21 21:57:45,034 - INFO - • reportho/results-c308178cfbb0f4474a9f11fea7185391ba9275ed (c308178cfbb0...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1812377Z 2025-08-21 21:57:45,034 - INFO - • crisprseq/results-c5d26a8f45f97a65a8a4d115a76a249dd8c90a85 (c5d26a8f45f9...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1812797Z 2025-08-21 21:57:45,034 - INFO - • crisprseq/results-c8a217958d18c2dcd84368b2b60097ada3ccfdff (c8a217958d18...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1813299Z 2025-08-21 21:57:45,034 - INFO - • denovotranscript/results-test-0465bf865238fcec868323cda8ce968d7fff2307 (test-0465bf8...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1813768Z 2025-08-21 21:57:45,034 - INFO - • genomeassembler/results-8d1fd6c25a63480f571ed83fc0607bceaeb5e147 (8d1fd6c25a63...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1814251Z 2025-08-21 21:57:45,034 - INFO - • methylseq/results-335f2a865a07a4b1b084830149412e404a736db2-bwameth-CPU (335f2a865a07...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1814642Z 2025-08-21 21:57:45,034 - INFO - • mag/results-409d36e985e8762373533852bcec10a78434ba8e (409d36e985e8...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1815224Z 2025-08-21 21:57:45,034 - INFO - • methylseq/results-fd056660f7680072e86ef1d7bd0ac903a377c53e-bwameth-CPU (fd056660f768...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1815688Z 2025-08-21 21:57:45,034 - INFO - • denovotranscript/results-a1ec673188e309a82f4a56c3c726375134dbbbfb (a1ec673188e3...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1816277Z 2025-08-21 21:57:45,034 - INFO - • metapep/results-test-b4a9a295b47d49fa8f7ae7ee5dd0b96858bd7a31 (test-b4a9a29...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1816607Z 2025-08-21 21:57:45,034 - INFO - • rnaseq/results-dev (dev) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1817047Z 2025-08-21 21:57:45,034 - INFO - • crisprseq/results-0ce0ed0e3dfd95becfced933ffabd2ef38a05382 (0ce0ed0e3dfd...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1817459Z 2025-08-21 21:57:45,034 - INFO - • mag/results-bc469f2adfd1ea21e84fed36b46a42dd22b705ee (bc469f2adfd1...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1817939Z 2025-08-21 21:57:45,034 - INFO - • methylseq/results-a79d8519e9999aa87f301cdc601fe43f19a77442-bismark-ARM (a79d8519e999...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1818179Z 2025-08-21 21:57:45,034 - INFO - • createtaxdb/results-dev (dev) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1818606Z 2025-08-21 21:57:45,034 - INFO - • crisprseq/results-be6922eba2c65f69d99ca25fb60c90dff92e7aa0 (be6922eba2c6...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1819028Z 2025-08-21 21:57:45,034 - INFO - • quantms/results-600505011027ab196bb18b1320607468bdae951a (600505011027...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1819516Z 2025-08-21 21:57:45,034 - INFO - • denovotranscript/results-test-3a9248719c5b557689a71c8398084eb56882fd5c (test-3a92487...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1819774Z 2025-08-21 21:57:45,035 - INFO - • genomeassembler/results-dev (dev) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1820208Z 2025-08-21 21:57:45,035 - INFO - • createtaxdb/results-253fd508ad533cda0853bbb05890f82f1336b93c (253fd508ad53...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1820635Z 2025-08-21 21:57:45,035 - INFO - • airrflow/results-a8dc190bc8c55a4a3559195454c14cfa857e04fe (a8dc190bc8c5...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1821068Z 2025-08-21 21:57:45,035 - INFO - • phaseimpute/results-8632ed3864211ed5c6cde8f8f29f58471e0a2fae (8632ed386421...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1821559Z 2025-08-21 21:57:45,035 - INFO - • methylseq/results-da77307d967426cb5a774d5de9c351537e775c65-bwameth-CPU (da77307d9674...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1821986Z 2025-08-21 21:57:45,035 - INFO - • pixelator/results-626f93638c6f64863ac4fafb2770f043076e3418 (626f93638c6f...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1822219Z 2025-08-21 21:57:45,035 - INFO - • ampliseq/results-dev (dev) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1822645Z 2025-08-21 21:57:45,035 - INFO - • ampliseq/results-fa76f73ba2bf32fc03dd89d2a22e8a191683687d (fa76f73ba2bf...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1823067Z 2025-08-21 21:57:45,035 - INFO - • methylong/results-1256a3372761d0d7c9b511213cc8cc7f179421fe (1256a3372761...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1823494Z 2025-08-21 21:57:45,035 - INFO - • phaseimpute/results-55a8d5b46759087d89e035d84d5822a461e16767 (55a8d5b46759...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1823933Z 2025-08-21 21:57:45,035 - INFO - • phaseimpute/results-05a2a4cf0e610dbb5a336167224b703e0505a56b (05a2a4cf0e61...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1824478Z 2025-08-21 21:57:45,035 - INFO - • airrflow/results-11d4b9b0d6d3335d62ee17dff2697a0b5c2f2f75 (11d4b9b0d6d3...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1825054Z 2025-08-21 21:57:45,035 - INFO - • genomeassembler/results-669f92da4f2ff6959004dde5cd5bf47bf87cd0d0 (669f92da4f2f...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1825476Z 2025-08-21 21:57:45,035 - INFO - • rnaseq/results-eb5392adde8e606539701a2d6327b8cb3e89c6e2 (eb5392adde8e...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1825897Z 2025-08-21 21:57:45,035 - INFO - • airrflow/results-0275b3a2eb008e493c9dd206ede500911b4ccdac (0275b3a2eb00...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1826389Z 2025-08-21 21:57:45,035 - INFO - • denovotranscript/results-test-ffb1ad89df62e4477bfdf9dd0616098bd5b3edf2 (test-ffb1ad8...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1826833Z 2025-08-21 21:57:45,035 - INFO - • taxprofiler/results-e93eee3a324eaccb32281b407577dbb8dbbd635f (e93eee3a324e...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1827271Z 2025-08-21 21:57:45,035 - INFO - • bamtofastq/results-008854c4eb65d5f5197f9f827c0ba108981d4b51 (008854c4eb65...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1827811Z 2025-08-21 21:57:45,035 - INFO - • methylong/results-f48b21e6a41757689b3951e23c28d70e0b274004 (f48b21e6a417...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1828296Z 2025-08-21 21:57:45,035 - INFO - • denovotranscript/results-test-11b9078804f4422f2ee6320d8c7297283660adae (test-11b9078...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1828744Z 2025-08-21 21:57:45,035 - INFO - • genomeassembler/results-528f56993779d170a348cc252334bcae1c27c59a (528f56993779...) - šŸ·ļø TAGGED ONLY +2025-08-21T21:57:45.1828834Z 2025-08-21 21:57:45,035 - INFO - +2025-08-21T21:57:45.1829152Z šŸ’” NOTE: Deletion is disabled. Use --enable-deletion to actually remove orphaned directories. +2025-08-21T21:57:45.1829236Z 2025-08-21 21:57:45,035 - INFO - +2025-08-21T21:57:45.1829369Z šŸ“‹ ORPHANED DIRECTORIES BY PIPELINE: +2025-08-21T21:57:45.1829586Z 2025-08-21 21:57:45,035 - INFO - • airrflow: 25 orphaned directories +2025-08-21T21:57:45.1829796Z 2025-08-21 21:57:45,035 - INFO - • ampliseq: 10 orphaned directories +2025-08-21T21:57:45.1830007Z 2025-08-21 21:57:45,035 - INFO - • atacseq: 2 orphaned directories +2025-08-21T21:57:45.1830213Z 2025-08-21 21:57:45,035 - INFO - • bamtofastq: 6 orphaned directories +2025-08-21T21:57:45.1830405Z 2025-08-21 21:57:45,035 - INFO - • chipseq: 3 orphaned directories +2025-08-21T21:57:45.1830596Z 2025-08-21 21:57:45,035 - INFO - • circrna: 1 orphaned directories +2025-08-21T21:57:45.1830812Z 2025-08-21 21:57:45,035 - INFO - • createpanelrefs: 1 orphaned directories +2025-08-21T21:57:45.1831022Z 2025-08-21 21:57:45,035 - INFO - • createtaxdb: 10 orphaned directories +2025-08-21T21:57:45.1831221Z 2025-08-21 21:57:45,035 - INFO - • crisprseq: 13 orphaned directories +2025-08-21T21:57:45.1831416Z 2025-08-21 21:57:45,036 - INFO - • demo: 1 orphaned directories +2025-08-21T21:57:45.1831625Z 2025-08-21 21:57:45,036 - INFO - • demultiplex: 1 orphaned directories +2025-08-21T21:57:45.1831860Z 2025-08-21 21:57:45,036 - INFO - • denovotranscript: 11 orphaned directories +2025-08-21T21:57:45.1832064Z 2025-08-21 21:57:45,036 - INFO - • detaxizer: 2 orphaned directories +2025-08-21T21:57:45.1832284Z 2025-08-21 21:57:45,036 - INFO - • drugresponseeval: 10 orphaned directories +2025-08-21T21:57:45.1832499Z 2025-08-21 21:57:45,036 - INFO - • epitopeprediction: 1 orphaned directories +2025-08-21T21:57:45.1832695Z 2025-08-21 21:57:45,036 - INFO - • fastquorum: 2 orphaned directories +2025-08-21T21:57:45.1832899Z 2025-08-21 21:57:45,036 - INFO - • fetchngs: 6 orphaned directories +2025-08-21T21:57:45.1833089Z 2025-08-21 21:57:45,036 - INFO - • funcscan: 3 orphaned directories +2025-08-21T21:57:45.1833310Z 2025-08-21 21:57:45,036 - INFO - • genomeassembler: 14 orphaned directories +2025-08-21T21:57:45.1833495Z 2025-08-21 21:57:45,036 - INFO - • mag: 28 orphaned directories +2025-08-21T21:57:45.1833689Z 2025-08-21 21:57:45,036 - INFO - • marsseq: 2 orphaned directories +2025-08-21T21:57:45.1833997Z 2025-08-21 21:57:45,036 - INFO - • metapep: 3 orphaned directories +2025-08-21T21:57:45.1834224Z 2025-08-21 21:57:45,036 - INFO - • metatdenovo: 1 orphaned directories +2025-08-21T21:57:45.1834426Z 2025-08-21 21:57:45,036 - INFO - • methylong: 20 orphaned directories +2025-08-21T21:57:45.1834628Z 2025-08-21 21:57:45,036 - INFO - • methylseq: 39 orphaned directories +2025-08-21T21:57:45.1834824Z 2025-08-21 21:57:45,036 - INFO - • mhcquant: 1 orphaned directories +2025-08-21T21:57:45.1835115Z 2025-08-21 21:57:45,036 - INFO - • molkart: 2 orphaned directories +2025-08-21T21:57:45.1835363Z 2025-08-21 21:57:45,036 - INFO - • multiplesequencealign: 6 orphaned directories +2025-08-21T21:57:45.1835552Z 2025-08-21 21:57:45,036 - INFO - • nanoseq: 7 orphaned directories +2025-08-21T21:57:45.1835744Z 2025-08-21 21:57:45,036 - INFO - • nascent: 1 orphaned directories +2025-08-21T21:57:45.1835949Z 2025-08-21 21:57:45,036 - INFO - • oncoanalyser: 2 orphaned directories +2025-08-21T21:57:45.1836156Z 2025-08-21 21:57:45,036 - INFO - • pacvar: 2 orphaned directories +2025-08-21T21:57:45.1836500Z 2025-08-21 21:57:45,036 - INFO - • pairgenomealign: 1 orphaned directories +2025-08-21T21:57:45.1836711Z 2025-08-21 21:57:45,036 - INFO - • pangenome: 1 orphaned directories +2025-08-21T21:57:45.1836943Z 2025-08-21 21:57:45,036 - INFO - • pathogensurveillance: 1 orphaned directories +2025-08-21T21:57:45.1837156Z 2025-08-21 21:57:45,036 - INFO - • phaseimpute: 9 orphaned directories +2025-08-21T21:57:45.1837359Z 2025-08-21 21:57:45,036 - INFO - • pixelator: 2 orphaned directories +2025-08-21T21:57:45.1837570Z 2025-08-21 21:57:45,036 - INFO - • proteinfamilies: 4 orphaned directories +2025-08-21T21:57:45.1837780Z 2025-08-21 21:57:45,036 - INFO - • proteinfold: 1 orphaned directories +2025-08-21T21:57:45.1837974Z 2025-08-21 21:57:45,036 - INFO - • quantms: 3 orphaned directories +2025-08-21T21:57:45.1838174Z 2025-08-21 21:57:45,036 - INFO - • rangeland: 2 orphaned directories +2025-08-21T21:57:45.1838383Z 2025-08-21 21:57:45,036 - INFO - • raredisease: 4 orphaned directories +2025-08-21T21:57:45.1838605Z 2025-08-21 21:57:45,036 - INFO - • readsimulator: 5 orphaned directories +2025-08-21T21:57:45.1838801Z 2025-08-21 21:57:45,036 - INFO - • reportho: 2 orphaned directories +2025-08-21T21:57:45.1839000Z 2025-08-21 21:57:45,036 - INFO - • rnafusion: 2 orphaned directories +2025-08-21T21:57:45.1839190Z 2025-08-21 21:57:45,037 - INFO - • rnaseq: 22 orphaned directories +2025-08-21T21:57:45.1839382Z 2025-08-21 21:57:45,037 - INFO - • rnavar: 1 orphaned directories +2025-08-21T21:57:45.1839573Z 2025-08-21 21:57:45,037 - INFO - • sarek: 21 orphaned directories +2025-08-21T21:57:45.1839777Z 2025-08-21 21:57:45,037 - INFO - • scdownstream: 1 orphaned directories +2025-08-21T21:57:45.1839974Z 2025-08-21 21:57:45,037 - INFO - • scrnaseq: 1 orphaned directories +2025-08-21T21:57:45.1840214Z 2025-08-21 21:57:45,037 - INFO - • spatialtranscriptomics: 1 orphaned directories +2025-08-21T21:57:45.1840428Z 2025-08-21 21:57:45,037 - INFO - • taxprofiler: 10 orphaned directories +2025-08-21T21:57:45.1840639Z 2025-08-21 21:57:45,037 - INFO - • testpipeline: 6 orphaned directories +2025-08-21T21:57:45.1840869Z 2025-08-21 21:57:45,037 - INFO - • variantbenchmarking: 1 orphaned directories +2025-08-21T21:57:45.1841071Z 2025-08-21 21:57:45,037 - INFO - • viralrecon: 1 orphaned directories +2025-08-21T21:57:45.1841232Z 2025-08-21 21:57:45,037 - INFO - ================================================================================ +2025-08-21T21:57:45.1841384Z 2025-08-21 21:57:45,037 - INFO - S3 results tagging completed successfully +2025-08-21T21:57:45.1888810Z ##[group]Run echo "# šŸ·ļø S3 Results Tagging Summary" >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1889136Z echo "# šŸ·ļø S3 Results Tagging Summary" >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1889233Z echo "" >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1889301Z  +2025-08-21T21:57:45.1889393Z # Basic information +2025-08-21T21:57:45.1889553Z echo "## šŸ“‹ Job Information" >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1889695Z echo "| Setting | Value |" >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1889820Z echo "|---------|-------|" >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1889983Z echo "| **Trigger** | pull_request |" >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1890172Z echo "| **Bucket** | \`nf-core-awsmegatests\` |" >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1890299Z if [ "pull_request" = "pull_request" ]; then +2025-08-21T21:57:45.1890531Z  echo "| **Mode** | šŸ”’ DRY RUN (forced for PR safety) |" >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1890732Z  echo "| **Deletion enabled** | āŒ Disabled for PRs |" >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1890807Z else +2025-08-21T21:57:45.1890888Z  MODE="🟔 DRY RUN" +2025-08-21T21:57:45.1890978Z  DELETION="āœ… Disabled" +2025-08-21T21:57:45.1891108Z  echo "| **Mode** | $MODE |" >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1891456Z  echo "| **Deletion enabled** | $DELETION |" >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1891528Z fi +2025-08-21T21:57:45.1891689Z echo "| **Timestamp** | $(date -u) |" >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1891795Z echo "" >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1891861Z  +2025-08-21T21:57:45.1892043Z # Parse the output log for statistics and orphaned directories +2025-08-21T21:57:45.1892154Z if [ -f "s3_tagging_output.log" ]; then +2025-08-21T21:57:45.1892289Z  echo "## šŸ“Š Statistics" >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1892357Z   +2025-08-21T21:57:45.1892602Z  # Extract statistics (matching the actual log format with timestamps and log levels) +2025-08-21T21:57:45.1892917Z  CURRENT_TAGGED=$(grep "Current releases tagged:" s3_tagging_output.log | grep -o "[0-9]*$" || echo "0") +2025-08-21T21:57:45.1893247Z  ORPHANED_TAGGED=$(grep "Orphaned directories tagged:" s3_tagging_output.log | grep -o "[0-9]*$" || echo "0") +2025-08-21T21:57:45.1893602Z  ORPHANED_DELETED=$(grep "Orphaned directories deleted:" s3_tagging_output.log | grep -o "[0-9]*$" || echo "0") +2025-08-21T21:57:45.1893862Z  ERRORS=$(grep "Errors encountered:" s3_tagging_output.log | grep -o "[0-9]*$" || echo "0") +2025-08-21T21:57:45.1893932Z   +2025-08-21T21:57:45.1894149Z  echo "- āœ… **Current releases tagged**: $CURRENT_TAGGED" >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1894400Z  echo "- šŸ—‘ļø **Orphaned directories tagged**: $ORPHANED_TAGGED" >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1894507Z  if [ "$ORPHANED_DELETED" != "0" ]; then +2025-08-21T21:57:45.1894752Z  echo "- šŸ—‘ļø **Orphaned directories deleted**: $ORPHANED_DELETED" >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1894819Z  fi +2025-08-21T21:57:45.1895252Z  echo "- āŒ **Errors encountered**: $ERRORS" >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1895448Z  echo "" >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1895550Z   +2025-08-21T21:57:45.1895660Z  # Extract orphaned directories if any +2025-08-21T21:57:45.1895760Z  if [ "$ORPHANED_TAGGED" != "0" ]; then +2025-08-21T21:57:45.1895934Z  echo "## šŸ—‘ļø Orphaned Directories Found" >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1896033Z  echo "" >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1896635Z  echo "The following directories were tagged as orphaned (no longer matching current pipeline releases):" >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1896739Z  echo "" >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1896812Z   +2025-08-21T21:57:45.1896978Z  # Extract orphaned directory lines and format for GitHub +2025-08-21T21:57:45.1897401Z  grep "Tagged orphaned directory:" s3_tagging_output.log | sed 's/.*Tagged orphaned directory: /- `/' | sed 's/$/`/' >> $GITHUB_STEP_SUMMARY || true +2025-08-21T21:57:45.1897478Z   +2025-08-21T21:57:45.1897578Z  echo "" >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1897671Z  if [ "false" = "false" ]; then +2025-08-21T21:57:45.1898083Z  echo "šŸ’” **Note**: Deletion is disabled. These directories are only tagged with \`deleteme=true\` for future cleanup." >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1898152Z  else +2025-08-21T21:57:45.1898505Z  echo "āš ļø **Warning**: Deletion is enabled. These directories will be permanently removed." >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1898574Z  fi +2025-08-21T21:57:45.1898670Z  echo "" >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1898739Z   +2025-08-21T21:57:45.1898864Z  # Extract pipeline breakdown if available  +2025-08-21T21:57:45.1899086Z  if grep -q "ORPHANED DIRECTORIES BY PIPELINE:" s3_tagging_output.log; then +2025-08-21T21:57:45.1899362Z  echo "### šŸ“‹ Breakdown by Pipeline" >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1899464Z  echo "" >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1899557Z  # Extract pipeline counts +2025-08-21T21:57:45.1900061Z  sed -n '/ORPHANED DIRECTORIES BY PIPELINE:/,/====/p' s3_tagging_output.log | grep "orphaned directories" | sed 's/.*• /- **/' | sed 's/: / directories**: /' >> $GITHUB_STEP_SUMMARY || true +2025-08-21T21:57:45.1900156Z  echo "" >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1900234Z  fi +2025-08-21T21:57:45.1900300Z  else +2025-08-21T21:57:45.1900420Z  echo "## ✨ All Clear!" >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1900519Z  echo "" >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1900887Z  echo "No orphaned directories found - all results directories match current pipeline releases." >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1900992Z  echo "" >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1901057Z  fi +2025-08-21T21:57:45.1901128Z else +2025-08-21T21:57:45.1901486Z  echo "āš ļø **Warning**: Could not find output log file. Check the workflow logs for detailed information." >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1901556Z fi +2025-08-21T21:57:45.1901621Z  +2025-08-21T21:57:45.1901723Z echo "---" >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1902219Z echo "šŸ“‹ **Full details**: Check the [workflow logs](https://github.com/nf-core/ops/actions/runs/17140000503) for complete output." >> $GITHUB_STEP_SUMMARY +2025-08-21T21:57:45.1941670Z shell: /usr/bin/bash -e {0} +2025-08-21T21:57:45.1941749Z env: +2025-08-21T21:57:45.1941838Z AWS_REGION: eu-west-1 +2025-08-21T21:57:45.1941935Z S3_BUCKET: nf-core-awsmegatests +2025-08-21T21:57:45.1942020Z AWS_DEFAULT_REGION: eu-west-1 +2025-08-21T21:57:45.1942318Z AWS_ACCESS_KEY_ID: *** +2025-08-21T21:57:45.1942530Z AWS_SECRET_ACCESS_KEY: *** +2025-08-21T21:57:45.1942668Z UV_CACHE_DIR: /home/runner/work/_temp/setup-uv-cache +2025-08-21T21:57:45.1942743Z ##[endgroup] +2025-08-21T21:57:45.2158974Z Post job cleanup. +2025-08-21T21:57:45.3712114Z Cache hit occurred on key setup-uv-1-x86_64-unknown-linux-gnu-3.12.3-pruned-7cff7c076ea5c3def548937b727987242f1934b35588912bbe4829317bbb3383, not saving cache. +2025-08-21T21:57:45.3817822Z Post job cleanup. +2025-08-21T21:57:45.5034279Z Post job cleanup. +2025-08-21T21:57:45.5962306Z [command]/usr/bin/git version +2025-08-21T21:57:45.6003876Z git version 2.51.0 +2025-08-21T21:57:45.6044889Z Temporarily overriding HOME='/home/runner/work/_temp/0fa2621f-8066-416f-8905-286229c61fe6' before making global git config changes +2025-08-21T21:57:45.6046357Z Adding repository directory to the temporary git global config as a safe directory +2025-08-21T21:57:45.6050321Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/ops/ops +2025-08-21T21:57:45.6082670Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand +2025-08-21T21:57:45.6113641Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2025-08-21T21:57:45.6335659Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2025-08-21T21:57:45.6356149Z http.https://github.com/.extraheader +2025-08-21T21:57:45.6368153Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader +2025-08-21T21:57:45.6397287Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" +2025-08-21T21:57:45.6730868Z Cleaning up orphan processes