We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9ecbef9 + e56e1c7 commit 0489d7eCopy full SHA for 0489d7e
modules/local/extract_target_sequences.nf
@@ -19,6 +19,7 @@ process EXTRACT_TARGET_SEQUENCES {
19
import sys
20
import json
21
from pathlib import Path
22
+ import Bio
23
from Bio import PDB
24
from Bio.PDB import PDBIO, MMCIFParser, PDBParser
25
@@ -109,7 +110,7 @@ process EXTRACT_TARGET_SEQUENCES {
109
110
with open("versions.yml", "w") as f:
111
f.write("\\"${task.process}\\":\\n")
112
f.write(" python: " + sys.version.split()[0] + "\\n")
- f.write(" biopython: " + PDB.__version__ + "\\n")
113
+ f.write(" biopython: " + Bio.__version__ + "\\n")
114
"""
115
116
stub:
0 commit comments