Revision 42a79999f11304671b9d22e4959b0167b2130944 authored by Thanh LĂȘ on 06 April 2020, 09:49:06 UTC, committed by GitHub on 06 April 2020, 09:49:06 UTC
1 parent f0ba0a1
Raw File
upload.nf

include {prepareUploadDirectory} from '../modules/upload.nf'
include {uploadToCLIMB} from '../modules/upload.nf'

workflow CLIMBrsync {
    take:
      ch_uploadDirectories
      ch_CLIMBkey

    main:
      prepareUploadDirectory(ch_uploadDirectories.collect())
      uploadToCLIMB(ch_CLIMBkey.combine(prepareUploadDirectory.out))
}

back to top