Skip to content

Commit

Permalink
make script executable (chmod + shebang)
Browse files Browse the repository at this point in the history
  • Loading branch information
alpae committed Dec 2, 2019
1 parent c9da046 commit 8d7bfc8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions concat_alignments.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python

import logging
import sys
import argparse
Expand Down
4 changes: 3 additions & 1 deletion filter_groups.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python

import math
import multiprocessing
import argparse
Expand Down Expand Up @@ -99,4 +101,4 @@ class SeveralSequencePerSpeciesException(Exception):
logging.basicConfig(level=level, format="%(asctime)s - %(name)s - %(levelname)s - %(message)s")
logger.debug("Concatenate alignments: arguments: {}".format(conf))

convert_files(conf.input, conf.output, pattern=conf.ext, nr_processes=conf.threads)
convert_files(conf.input, conf.output, pattern=conf.ext, nr_processes=conf.threads)

0 comments on commit 8d7bfc8

Please sign in to comment.