コード例 #1
0
ファイル: service.py プロジェクト: VonRosenchild/tibanna
def create_and_post_processed_file(ff_keys,
                                   file_format,
                                   secondary_file_formats,
                                   source_experiments=None,
                                   other_fields=None):
    printlog(file_format)
    if not file_format:
        raise Exception("file format for processed file must be provided")
    if secondary_file_formats:
        extra_files = [{
            "file_format": parse_formatstr(v)
        } for v in secondary_file_formats]
    else:
        extra_files = None
    pf = ProcessedFileMetadata(file_format=file_format,
                               extra_files=extra_files,
                               source_experiments=source_experiments,
                               other_fields=other_fields)
    # actually post processed file metadata here
    resp = pf.post(key=ff_keys)
    if resp and '@graph' in resp:
        resp = resp.get('@graph')[0]
    else:
        raise Exception("Failed to post Processed file metadata.\n")
    return pf, resp
コード例 #2
0
ファイル: service.py プロジェクト: bongsoopark/tibanna
def handle_processed_files(workflow_info,
                           tibanna,
                           pf_source_experiments=None,
                           custom_fields=None,
                           user_supplied_output_files=None):
    output_files = []
    pf_meta = []
    fe_map = None
    try:
        print("Inside handle_processed_files")
        LOG.info("Inside handle_processed_files")
        for arg in workflow_info.get('arguments', []):
            print("processing arguments %s" % str(arg))
            LOG.info("processing arguments %s" % str(arg))
            if (arg.get('argument_type') in [
                    'Output processed file', 'Output report file',
                    'Output QC file'
            ]):
                of = dict()
                argname = of['workflow_argument_name'] = arg.get(
                    'workflow_argument_name')
                of['type'] = arg.get('argument_type')

                # see if user supplied the output file already
                # this is often the case for pseudo workflow runs (run externally)
                # TODO move this down next to post of pf
                pf, resp = proc_file_for_arg_name(
                    user_supplied_output_files,
                    arg.get('workflow_argument_name'), tibanna)
                if pf:
                    print(
                        "proc_file_for_arg_name returned %s \nfrom ff result of\n %s"
                        % (str(pf.__dict__), str(resp)))
                    LOG.info(
                        "proc_file_for_arg_name returned %s \nfrom ff result of\n %s"
                        % (str(pf.__dict__), str(resp)))
                    pf_meta.append(pf)
                else:
                    print(
                        "proc_file_for_arg_name returned %s \nfrom ff result of\n %s"
                        % (str(pf), str(resp)))
                    LOG.info(
                        "proc_file_for_arg_name returned %s \nfrom ff result of\n %s"
                        % (str(pf), str(resp)))
                if not resp:  # if it wasn't supplied as output we have to create a new one
                    assert user_supplied_output_files is None
                    if of['type'] == 'Output processed file':
                        print("creating new processedfile")
                        LOG.info("creating new processedfile")
                        if 'argument_format' not in arg:
                            raise Exception(
                                "argument format for processed file must be provided"
                            )
                        if not fe_map:
                            fe_map = get_format_extension_map(tibanna.ff_keys)
                        # These are not processed files but report or QC files.
                        of['format'] = arg.get('argument_format')
                        of['extension'] = fe_map.get(
                            arg.get('argument_format'))
                        if 'secondary_file_formats' in arg:
                            of['secondary_file_formats'] = arg.get(
                                'secondary_file_formats')
                            of['secondary_file_extensions'] = [
                                fe_map.get(v)
                                for v in arg.get('secondary_file_formats')
                            ]
                            extra_files = [{
                                "file_format": v
                            } for v in of['secondary_file_formats']]
                        else:
                            extra_files = None
                        pf_other_fields = dict()
                        if custom_fields:
                            if argname in custom_fields:
                                pf_other_fields.update(custom_fields[argname])
                            if 'ALL' in custom_fields:
                                pf_other_fields.update(custom_fields['ALL'])
                        pf = ProcessedFileMetadata(
                            file_format=arg.get('argument_format'),
                            extra_files=extra_files,
                            source_experiments=pf_source_experiments,
                            other_fields=pf_other_fields)
                        try:
                            # actually post processed file metadata here
                            resp = pf.post(key=tibanna.ff_keys)
                            resp = resp.get('@graph')[0]
                        except Exception as e:
                            LOG.error(
                                "Failed to post Processed file metadata. %s\n"
                                % e)
                            LOG.error("resp" + str(resp) + "\n")
                            raise e
                        pf_meta.append(pf)
                if resp:
                    of['upload_key'] = resp.get('upload_key')
                    of['value'] = resp.get('uuid')
                    of['extra_files'] = resp.get('extra_files')
                output_files.append(of)

    except Exception as e:
        LOG.error("output_files = " + str(output_files) + "\n")
        LOG.error("Can't prepare output_files information. %s\n" % e)
        raise e
    return output_files, pf_meta