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

🐛 Analysis exists in QA song, but not indexed to GraphQL #551

Open
lindaxiang opened this issue Apr 29, 2022 · 1 comment
Open

🐛 Analysis exists in QA song, but not indexed to GraphQL #551

lindaxiang opened this issue Apr 29, 2022 · 1 comment
Labels
bug Something isn't working

Comments

@lindaxiang
Copy link

Describe the bug

On file page of QA platform: https://platform-ui.qa.argo.cancercollaboratory.org/file/FL17100
The file with objectId: dc248b5e-8dfd-5cec-bfd4-4c190f3966d4
Was generated by runId: wes-798204ab98c54f5789c3a13260a89d42
The file's QC metrics are stored in analysis: https://song.rdpc-qa.cancercollaboratory.org/studies/DASH-CA/analysis/151ca5e7-32c2-402d-9ca5-e732c2102d51

However from GraphQL query, the given runId: wes-798204ab98c54f5789c3a13260a89d42 returns no metrics.

query($runId: String) {
  analyses(
    filter: {
      runId: $runId
      analysisType: "qc_metrics"
      analysisState: PUBLISHED
    }
  ) {
    info {
      totalHits
      contentCount
    }
    content {
      analysisId
      analysisState
      studyId
      analysisType
      experiment
      workflow {
        workflowName
      }
      files {
        fileType
        dataType
        objectId
        metrics
        analysisTools
      }
    }
  }
}

Expected behaviour

The above query in QA should return the file's metrics info.

@lindaxiang lindaxiang added the bug Something isn't working label Apr 29, 2022
@lindaxiang
Copy link
Author

Further context can be found in thread: #506 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant