Skip to content

Commit

Permalink
Change scripts to pull python version from the env, make executable f…
Browse files Browse the repository at this point in the history
…rom path
  • Loading branch information
nodrogluap committed Oct 8, 2024
1 parent 4427d91 commit ca6922a
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion AnnotatorCore.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
import datetime
import json
import csv
Expand Down
2 changes: 1 addition & 1 deletion ClinicalDataAnnotator.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python

import sys
import re
Expand Down
2 changes: 1 addition & 1 deletion CnaAnnotator.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python

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

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

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

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

import sys
import re
Expand Down
2 changes: 1 addition & 1 deletion StructuralVariantAnnotator.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python

import sys
import argparse
Expand Down
2 changes: 1 addition & 1 deletion test_Annotation.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
import pytest
import os
import logging
Expand Down
2 changes: 1 addition & 1 deletion test_AnnotatorCore.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
import pytest

from AnnotatorCore import getgenesfromfusion
Expand Down

0 comments on commit ca6922a

Please sign in to comment.