gpt4 book ai didi

Python 索引错误 : list index out of range while finding SNPs in vcf

转载 作者:行者123 更新时间:2023-11-28 16:28:45 24 4
gpt4 key购买 nike

大家好,我应该使用 Python 脚本从 vcf 文件中的 csv 文件中识别指定位置的可能 SNP。
我刚开始使用 python,遗憾的是我总是遇到以下错误:

 Traceback (most recent call last):
File "getSNPs.py", line 20, in <module> oo = line[2] + "_" +
line[3]
IndexError: list index out of range from the following script
!/bin/python usage: python getSNPs.py your.vcf PhenoSNPs.csv

代码:

import sys
import gzip

SNPs = {}

for i in gzip.open(sys.argv[1], "r"):
if '#' not in i:
line = i.split("\t")
oo = line[0] + "_" + line[1]
SNPs[oo] = i

pp = sys.argv[1] + ".captureSNPs"

out = open(pp, "w")

for i in open(sys.argv[2], "r"):
line = i.split(",")
oo = line[2] + "_" + line[3]
try:
out.write(SNPs[oo])
except KeyError:
ow = line[2] + "\t" + line[3] + "\t" + "not covered" + "\n"
out.write(ow)

最佳答案

如果 i = 'aa' 并且你执行 line = i.split(",") 这意味着 line = ['aa' ],那么当你执行 line[2] + "_"+ line[3] 时你会得到一个 IndexError 因为 line 没有第二个和第三个元素。

使用 try/except 或重新考虑代码的逻辑。

关于Python 索引错误 : list index out of range while finding SNPs in vcf,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34265048/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com