- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要一些帮助来理解我想使用的函数,但我不完全确定它的某些部分是做什么的。我知道该函数是通过读取 Fasta 文件来创建字典。据我了解,这应该为最终扩展重叠群(重叠的 dna 序列)生成前和后缀词典。代码:
def makeSuffixDict(reads, lenSuffix = 20, verbose = True):
lenKeys = len(reads[0]) - lenSuffix
dict = {}
multipleKeys = []
i = 1
for read in reads:
if read[0:lenKeys] in dict:
multipleKeys.append(read[0:lenKeys])
else:
dict[read[0:lenKeys]] = read[lenKeys:]
if verbose:
print("\rChecking suffix", i, "of", len(reads), end = "", flush = True)
i += 1
for key in set(multipleKeys):
del(dict[key])
if verbose:
print("\nCreated", len(dict), "suffixes with length", lenSuffix, \
"from", len(reads), "Reads. (", len(reads) - len(dict), \
"unambigous)")
return(dict)
附加信息:reads = readFasta("smallReads.fna", verbose = True)
函数是这样调用的:
if __name__ == "__main__":
reads = readFasta("smallReads.fna", verbose = True)
suffixDicts = makeSuffixDicts(reads, 10)
smallReads.fna 文件包含碱基串 (Dna):
"> read 1
TTATGAATATTACGCAATGGACGTCCAAGGTACAGCGTATTTGTACGCTA
"> read 2
AACTGCTATCTTTCTTGTCCACTCGAAAATCCATAACGTAGCCCATAACG
"> read 3
TCAGTTATCCTATATACTGGATCCCGACTTTAATCGGCGTCGGAATTACT
以下是我不明白的部分:
lenKeys = len(reads[0]) - lenSuffix
值 [0] 是什么意思?据我了解,“len”返回列表中的元素数。为什么“阅读”会自动成为一个列表?编辑:似乎可以将 Fasta 文件声明为列表。有人可以证实吗?
if read[0:lenKeys] in dict:
这是否意味着“从 0 到‘lenKeys’”?仍然对值(value)感到困惑。在另一个函数中有类似的行:if read[-lenKeys:] in dict:
“-”是做什么的?
def makeSuffixDict(reads, lenSuffix = 20, verbose = True):
这里的参数我不明白:reads
怎么能是参数呢?除了从 len(reads[0])
中减去的值之外,此函数上下文中的 lenSuffix = 20
是什么?什么是冗长?我读过有关忽略空格的“详细模式”的信息,但我从未见过它被用作参数,后来又被用作变量。
最佳答案
你问题的语气让我觉得你混淆了程序特性(len
、函数等)和原始程序员定义的东西( 的类型)阅读
,冗长
等)。
def some_function(these, are, arbitrary, parameters):
pass
这个函数定义了一堆参数。除了我暗中赋予它们的值(value)外,它们没有任何意义。例如,如果我这样做:
def reverse_string(s):
pass
s
应该是字符串吧?在您的示例中,我们有:
def makeSuffixDict(reads, lenSuffix = 20, verbose = True):
lenKeys = len(reads[0]) - lenSuffix
...
从这两行我们可以推断出一些事情:
lenSuffix
是一个 int
,而 verbose
是一个 bool
(来自它们的默认参数)reads
可以被索引(字符串?列表?元组?)reads
中的项目有长度(字符串?列表?元组?)由于 Python 是动态类型的,所以这是目前我们所能知道的关于函数的信息。其余的将通过其文档或调用方式进行解释。
就是说:让我按顺序回答您所有的问题:
some_object[0]
is grabbing the first item in a container.[1,2,3][0] == 1
,"Hello, World!"[0] == "H"
. This is called indexing, and is governed by the__getitem__
magic method
len
is a built-in function that returns the length of an object. It is governed by the__len__
magic method.len('abc') == 3
, alsolen([1, 2, 3]) == 3
. Note thatlen(['abc']) == 1
, since it is measuring the length of the list, not the string inside it.
reads
is a parameter. It is whatever the calling scope passes to it. It does appear that it expects a list, but that's not a hard and fast rule!
Slicing is doing
some_container[start_idx : end_idx [ : step_size]]
. It does pretty much what you'd expect:"0123456"[0:3] == "012"
. Slice indexes are considered to be zero-indexed and lay between the elements, so[0:1]
is identical to[0]
, except that slices return lists, not individual objects (so'abc'[0] == 'a'
but'abc'[0:1] == ['a']
). If you omit either start or end index, it is treated as the beginning or end of the string respectively. I won't go into step size here.Negative indexes count from the back, so
'0123456'[-3:] == '456'. Note that
[-0]is not the last value,
[-1]is. This is contrasted with
[0]` being the first value.
Because the function is defined as
makeSuffixDict(reads, ...)
. That's what a parameter is.
Looks like it's the length of the expected suffix!
verbose
?
verbose
has no meaning on its own. It's just another parameter. Looks like the author included theverbose
flag so you could get output while the function ran. Notice all theif verbose
blocks seem to do nothing, just provide feedback to the user.
关于python - 了解 Python 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30584108/
C语言sscanf()函数:从字符串中读取指定格式的数据 头文件: ?
最近,我有一个关于工作预评估的问题,即使查询了每个功能的工作原理,我也不知道如何解决。这是一个伪代码。 下面是一个名为foo()的函数,该函数将被传递一个值并返回一个值。如果将以下值传递给foo函数,
CStr 函数 返回表达式,该表达式已被转换为 String 子类型的 Variant。 CStr(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CSng 函数 返回表达式,该表达式已被转换为 Single 子类型的 Variant。 CSng(expression) expression 参数是任意有效的表达式。 说明 通常,可
CreateObject 函数 创建并返回对 Automation 对象的引用。 CreateObject(servername.typename [, location]) 参数 serv
Cos 函数 返回某个角的余弦值。 Cos(number) number 参数可以是任何将某个角表示为弧度的有效数值表达式。 说明 Cos 函数取某个角并返回直角三角形两边的比值。此比值是
CLng 函数 返回表达式,此表达式已被转换为 Long 子类型的 Variant。 CLng(expression) expression 参数是任意有效的表达式。 说明 通常,您可以使
CInt 函数 返回表达式,此表达式已被转换为 Integer 子类型的 Variant。 CInt(expression) expression 参数是任意有效的表达式。 说明 通常,可
Chr 函数 返回与指定的 ANSI 字符代码相对应的字符。 Chr(charcode) charcode 参数是可以标识字符的数字。 说明 从 0 到 31 的数字表示标准的不可打印的
CDbl 函数 返回表达式,此表达式已被转换为 Double 子类型的 Variant。 CDbl(expression) expression 参数是任意有效的表达式。 说明 通常,您可
CDate 函数 返回表达式,此表达式已被转换为 Date 子类型的 Variant。 CDate(date) date 参数是任意有效的日期表达式。 说明 IsDate 函数用于判断 d
CCur 函数 返回表达式,此表达式已被转换为 Currency 子类型的 Variant。 CCur(expression) expression 参数是任意有效的表达式。 说明 通常,
CByte 函数 返回表达式,此表达式已被转换为 Byte 子类型的 Variant。 CByte(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CBool 函数 返回表达式,此表达式已转换为 Boolean 子类型的 Variant。 CBool(expression) expression 是任意有效的表达式。 说明 如果 ex
Atn 函数 返回数值的反正切值。 Atn(number) number 参数可以是任意有效的数值表达式。 说明 Atn 函数计算直角三角形两个边的比值 (number) 并返回对应角的弧
Asc 函数 返回与字符串的第一个字母对应的 ANSI 字符代码。 Asc(string) string 参数是任意有效的字符串表达式。如果 string 参数未包含字符,则将发生运行时错误。
Array 函数 返回包含数组的 Variant。 Array(arglist) arglist 参数是赋给包含在 Variant 中的数组元素的值的列表(用逗号分隔)。如果没有指定此参数,则
Abs 函数 返回数字的绝对值。 Abs(number) number 参数可以是任意有效的数值表达式。如果 number 包含 Null,则返回 Null;如果是未初始化变量,则返回 0。
FormatPercent 函数 返回表达式,此表达式已被格式化为尾随有 % 符号的百分比(乘以 100 )。 FormatPercent(expression[,NumDigitsAfterD
FormatNumber 函数 返回表达式,此表达式已被格式化为数值。 FormatNumber( expression [,NumDigitsAfterDecimal [,Inc
我是一名优秀的程序员,十分优秀!