Skip to content

Commit

Permalink
missing function call
Browse files Browse the repository at this point in the history
  • Loading branch information
ens-ftricomi committed May 31, 2024
1 parent 5204073 commit 0b6ad6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pipelines/nextflow/subworkflows/run_alignment.nf
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ include { CLEANING } from '../modules/cleaning.nf'
include { setMetaDataRecord } from '../modules/utils.nf'
include { getDataFromTable } from '../modules/utils.nf'
include { updateTable } from '../modules/utils.nf'

include { setLastCheckDate } from '../modules/utils.nf'

workflow RUN_ALIGNMENT{
take:
Expand All @@ -55,7 +55,7 @@ workflow RUN_ALIGNMENT{
}
def runAccessionData_NewQCstatus = runAccessionData_StarOutput.map { result ->
def (taxon_id, gca, run_accession) = result
def run_Id = getDataFromTable("run_id", "run", "run_accession", run_accession)[0].run_id
def run_Id = getDataFromTable("run_id", "run", "run_accession", run_accession)[0].run_id.toString()
//updateRunStatus(runId)
updateTable("run_id", run_Id, "run", "qc_status", "ALIGNED")
setLastCheckDate(taxon_id,'update')
Expand Down

0 comments on commit 0b6ad6d

Please sign in to comment.