Commit 04410d5e authored by Lukas Jarosch's avatar Lukas Jarosch
Browse files

Improve import formatting

parent 78b97065
...@@ -3,12 +3,13 @@ This script generates a FASTA file for all chains in an alignment directory or ...@@ -3,12 +3,13 @@ This script generates a FASTA file for all chains in an alignment directory or
alignment DB. alignment DB.
""" """
from concurrent.futures import ThreadPoolExecutor, as_completed
import json import json
from argparse import ArgumentParser
from concurrent.futures import ThreadPoolExecutor, as_completed
from pathlib import Path from pathlib import Path
from typing import Optional from typing import Optional
from tqdm import tqdm from tqdm import tqdm
from argparse import ArgumentParser
def chain_dir_to_fasta(dir: Path) -> str: def chain_dir_to_fasta(dir: Path) -> str:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment