Skip to content

Commit

Permalink
update execs to python3, fixes #1294
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewprzh committed May 21, 2024
1 parent 827dab5 commit 9fc7832
Show file tree
Hide file tree
Showing 58 changed files with 58 additions and 58 deletions.
2 changes: 1 addition & 1 deletion src/projects/mts/mts.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# See file LICENSE for details.
############################################################################

#!/usr/bin/env python
#!/usr/bin/env python3
from __future__ import (print_function)

import argparse
Expand Down
2 changes: 1 addition & 1 deletion src/projects/mts/multirun.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# See file LICENSE for details.
############################################################################

#!/usr/bin/env python
#!/usr/bin/env python3
from __future__ import (print_function)

import argparse
Expand Down
2 changes: 1 addition & 1 deletion src/projects/mts/scripts/bhtsne.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# See file LICENSE for details.
############################################################################

#!/usr/bin/env python
#!/usr/bin/env python3

'''
A simple Python wrapper for the bh_tsne binary that makes it easier to use it
Expand Down
2 changes: 1 addition & 1 deletion src/projects/mts/scripts/bin_profiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# See file LICENSE for details.
############################################################################

#!/usr/bin/env python
#!/usr/bin/env python3
from __future__ import (print_function)

import pandas
Expand Down
2 changes: 1 addition & 1 deletion src/projects/mts/scripts/choose_bins.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# See file LICENSE for details.
############################################################################

#!/usr/bin/env python
#!/usr/bin/env python3
from __future__ import (print_function)

import re
Expand Down
2 changes: 1 addition & 1 deletion src/projects/mts/scripts/choose_samples.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# See file LICENSE for details.
############################################################################

#!/usr/bin/env python
#!/usr/bin/env python3
from __future__ import (print_function)

import argparse
Expand Down
2 changes: 1 addition & 1 deletion src/projects/mts/scripts/clusters2csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# See file LICENSE for details.
############################################################################

#!/usr/bin/env python
#!/usr/bin/env python3
from __future__ import print_function
import sys

Expand Down
2 changes: 1 addition & 1 deletion src/projects/mts/scripts/combine_contigs.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# See file LICENSE for details.
############################################################################

#!/usr/bin/env python
#!/usr/bin/env python3
from __future__ import print_function
import sys
import os
Expand Down
2 changes: 1 addition & 1 deletion src/projects/mts/scripts/contig_name_filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# See file LICENSE for details.
############################################################################

#!/usr/bin/env python
#!/usr/bin/env python3
from __future__ import print_function

import sys
Expand Down
2 changes: 1 addition & 1 deletion src/projects/mts/scripts/cut_fasta.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# See file LICENSE for details.
############################################################################

#!/usr/bin/env python
#!/usr/bin/env python3
"""Cut up fasta file in non-overlapping or overlapping parts of equal length.
"""
from __future__ import print_function
Expand Down
2 changes: 1 addition & 1 deletion src/projects/mts/scripts/gather_stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# See file LICENSE for details.
############################################################################

#!/usr/bin/env python
#!/usr/bin/env python3
from __future__ import (print_function)

import argparse
Expand Down
2 changes: 1 addition & 1 deletion src/projects/mts/scripts/multi_stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# See file LICENSE for details.
############################################################################

#!/usr/bin/env python
#!/usr/bin/env python3
from __future__ import (print_function)

import argparse
Expand Down
2 changes: 1 addition & 1 deletion src/projects/mts/scripts/split_bins.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# See file LICENSE for details.
############################################################################

#!/usr/bin/env python
#!/usr/bin/env python3
from __future__ import print_function

from operator import itemgetter
Expand Down
2 changes: 1 addition & 1 deletion src/projects/mts/scripts/subsample.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# See file LICENSE for details.
############################################################################

#!/usr/bin/env python
#!/usr/bin/env python3
from __future__ import (print_function)

import argparse
Expand Down
2 changes: 1 addition & 1 deletion src/projects/spades/pipeline/spades.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
2 changes: 1 addition & 1 deletion src/projects/spades/pipeline/spades_init.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# See file LICENSE for details.
############################################################################

#!/usr/bin/env python
#!/usr/bin/env python3

import os
import sys
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
2 changes: 1 addition & 1 deletion src/projects/spades/pipeline/spades_pipeline/support.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
2 changes: 1 addition & 1 deletion src/projects/spades_tools/kmerbin_converter.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
2 changes: 1 addition & 1 deletion src/projects/spaligner/benchmarking/benchmarking_stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# See file LICENSE for details.
############################################################################

#!/usr/bin/env python
#!/usr/bin/env python3
import sys
import json
import unicodedata
Expand Down
2 changes: 1 addition & 1 deletion src/projects/spaligner/benchmarking/test_spaligner.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# See file LICENSE for details.
############################################################################

#!/usr/bin/env python
#!/usr/bin/env python3
import sys
import json
import unicodedata
Expand Down
2 changes: 1 addition & 1 deletion src/test/teamcity/github_runner.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
2 changes: 1 addition & 1 deletion src/test/teamcity/process_cfg.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
2 changes: 1 addition & 1 deletion src/test/teamcity/update_saves.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
2 changes: 1 addition & 1 deletion src/tools/misc/copyrighter.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
2 changes: 1 addition & 1 deletion src/tools/misc/datasets_converter.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
2 changes: 1 addition & 1 deletion src/tools/misc/datasets_info2yaml_converter.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
2 changes: 1 addition & 1 deletion src/tools/misc/datasets_info_cleaner.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
2 changes: 1 addition & 1 deletion src/tools/misc/sv_simulator.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
2 changes: 1 addition & 1 deletion src/tools/misc/txt2gff.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
2 changes: 1 addition & 1 deletion src/tools/reads_utils/crop/crop_bfaecium.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down
2 changes: 1 addition & 1 deletion src/tools/reads_utils/ideal_by_fasta.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

############################################################################
# Copyright (c) 2023-2024 SPAdes team
Expand Down

0 comments on commit 9fc7832

Please sign in to comment.