Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run NEON sample end to end in Dev #355

Open
mbthornton-lbl opened this issue Jan 21, 2025 · 2 comments
Open

Run NEON sample end to end in Dev #355

mbthornton-lbl opened this issue Jan 21, 2025 · 2 comments
Assignees

Comments

@mbthornton-lbl
Copy link
Contributor

mbthornton-lbl commented Jan 21, 2025

Start with the following Data Gen ID:
test 1 (from before the Jan NERSC maintenance): nmdc:omprc-11-hcjd7y28
test 2: nmdc:omprc-11-rejajm76
test 3: nmdc:omprc-11-qww9t685

If more test IDs are needed used the next record from this aggregation query:

db.getCollection('data_generation_set').aggregate(
  [
    {
      $match: {
        associated_studies:
          'nmdc:sty-11-34xj1150',
        analyte_category: 'metagenome'
      }
    },
    {
      $lookup: {
        from: 'workflow_execution_set',
        localField: 'id',
        foreignField: 'was_informed_by',
        as: 'workflow_execution_set'
      }
    },
    {
      $lookup: {
        from: 'data_object_set',
        localField: 'has_output',
        foreignField: 'id',
        as: 'do_output'
      }
    },
    {
      $match: {
        'do_output.in_manifest': {
          $exists: false
        }
      }
    },
    {
      $match: {
        workflow_execution_set: { $size: 0 }
      }
    }
  ],
  { maxTimeMS: 60000, allowDiskUse: true }
);
@aclum
Copy link
Contributor

aclum commented Jan 22, 2025

@mbthornton-lbl this failed, there is no output directory. cromwell run directory is 41ec9955-f8b4-4676-86c3-f2714a67b016

@aclum
Copy link
Contributor

aclum commented Jan 22, 2025

Root cause is mismatching input key names between the wdl and the workflows.yaml

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Development

No branches or pull requests

3 participants