python - 使用递归的生成器对象

标签 python arrays recursion generator bioinformatics

Python 2.7

给定一个等位基因列表和数组numb_alleles的长度,例如:

alleles = [11, 12, 13, 14, 15, 16]
numb_alleles = 8

我一直在尝试检查每个笛卡尔积并选择与我的研究相关且满足以下选择标准的等位基因:

  1. 笛卡尔积中的每个第二个值都必须大于它之前的值。例如,考虑到上述条件,笛卡尔积[13, 15, 11, 12, 14 , 15, 16, 16] 将满足选择标准,而 [13, 15, 16, 12, 14, 15, 16, 16] 则不会,因为索引 2 和 3 .
  2. 等位基因中的每个值都必须出现在笛卡尔积中。 例如,[13, 15, 11, 12, 14, 15, 16, 16] 将满足选择标准,而 [13, 15, 11, 12, 14, 15, 11, 13] 不会,因为16 不在产品中。

我一直在使用itertools.product(alleles,repeat = numb_alleles)来迭代每个可能的笛卡尔积以进一步分析。然而,随着 numb_alleles 增加到 10 或 12,总体计算量显着增加。

我试图通过尝试使用下面的递归函数选择相关的笛卡尔积来解决这个问题。

def check_allele(allele_combination, alleles):
    """Check if all the alleles are present in allele_combination"""
    for allele in alleles:
        if allele not in allele_combination:
            return False
    return True

def recursive_product(alleles, numb_alleles, result):
    current_len = len(result[0])
    new_result = []
    final_result = []

    for comb in result:
        for allele in alleles:
            if current_len % 2 == 0:
                new_result.append(comb + [allele])
            elif current_len % 2 == 1:
                if comb[-1] <= allele:
                    new_result.append(comb + [allele])
                    if (check_allele(comb + [allele], alleles)):
                        final_result.append(comb + [allele])

    if current_len + 1 < numb_alleles:
        return recursive_product(alleles, numb_alleles, new_result)
    else:
        return final_result

a = (recursive_product(alleles, numb_alleles, [[]]))

但是,使用这种方法,我仍然无法处理高达 numb_alleles = 12 的数组,或者当 alleles 的长度增加时,因为我正在使用 return 而不是 yield。因此,它会导致内存不足错误。

我想知道我是否可以将此函数放入生成器中,或者是否有人可以建议不同的方法,以便我可以进一步计算 numb_alleles = 12 及更长的输出等位基因数组。

非常感谢!

最佳答案

你说:“笛卡尔积中的每一个第二个值都必须大于它之前的值。”但在您的示例中 [13, 15, 11, 12, 14, 15, 16, 16] 插槽 7 (16) 中的项目等于前一个插槽中的项目,所以我假设您的意思是奇数索引处的项目必须 >= 前一个偶数索引处的项目。

下面的生成器比您当前的方法更有效,并且它避免了在 RAM 中保存大型临时列表。核心思想是使用itertools.product生成偶数槽的组合,然后再次使用product来填充满足选择标准#1的奇数槽。我们使用集合操作来确保最终组合包含等位基因中的每个项目。

from itertools import product

def combine_alleles(alleles, numb_alleles):
    ''' Make combinations that conform to the selection criteria. First create
        the items for the even slots, then create items for the odd slots such
        that each odd slot item >= the corresponding even slot item. Then test
        that the whole combination contains each item in alleles.
    '''
    # If the number of unique items in the even slots is < min_len, then it's
    # impossible to make a full combination containing all of the alleles.
    min_len = len(alleles) - numb_alleles // 2

    # Create a function to test if a given combination
    # contains all of the alleles.
    alleles_set = set(alleles)
    complete = alleles_set.issubset

    # Make lists of alleles that are >= the current allele number
    higher = {k: [u for u in alleles if u >= k] for k in alleles}

    # Make combinations for the even slots
    for evens in product(alleles, repeat=numb_alleles // 2):
        if len(set(evens)) < min_len:
            continue
        # Make combinations for the odd slots that go with this
        # combination of evens.
        a = [higher[u] for u in evens]
        for odds in product(*a):
            if complete(evens + odds):
                yield [u for pair in zip(evens, odds) for u in pair]

# test

alleles = [11, 12, 13, 14, 15, 16]
numb_alleles = 8

for i, t in enumerate(combine_alleles(alleles, numb_alleles), 1):
    print(i, t)

此代码找到 16020 个组合,因此输出太大,无法包含在此处。


这是一个更接近您的版本的替代生成器,但在我的测试中它比我的第一个版本慢一点。

def combine_alleles(alleles, numb_alleles):
    total_len = len(alleles)

    # Make lists of alleles that are >= the current allele number
    higher = {k: [u for u in alleles if u >= k] for k in alleles}

    def combos(i, base):
        remaining = numb_alleles - i
        if len(set(base)) + remaining < total_len:
            return

        if remaining == 0:
            yield base
            return

        ii = i + 1
        for u in higher[base[-1]] if i % 2 else alleles:
           yield from combos(ii, base + [u])

    yield from combos(0, [])

此版本适用于 Python 3。Python 2 没有 yield from,但这很容易修复:

yield from some_iterable

相当于

for t in some_iterable:
    yield t

关于python - 使用递归的生成器对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48256088/

相关文章:

python - 根据百分比将列表分成四个部分,即使列表不能被 10 整除。Python

python - 在 Mac 上将使用 Cython 编译的 c 模块导入到 python 模块时出错

c - 使用 malloc 具有 X 和 y 坐标的 N 边多边形

c++ - C++中强制转换的结果是什么?

algorithm - 如何在 Haskell 中编写 N 元树遍历函数

python - 使用python在两个文件中查找匹配项

python - 每隔一个数字加 1

javascript - 斐波那契数列的实现未按预期运行

java - 基于对象属性对 ArrayList 进行排序

c++ - 这个递归函数的时间复杂度是多少