Skip to content

Commit

Permalink
updated version numbers for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
tpereachamblee committed Dec 9, 2021
1 parent 8d8379d commit c382f2e
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 23 deletions.
4 changes: 2 additions & 2 deletions scripts/align.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
from reference import check_ref, get_exon_combinations
from arcas_utilities import *

__version__ = '0.2.5'
__date__ = '2021-04-12'
__version__ = '0.3.0'
__date__ = '2021-12-09'

#-------------------------------------------------------------------------------
# Paths and filenames
Expand Down
4 changes: 2 additions & 2 deletions scripts/arcas_utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
import uuid
from subprocess import PIPE, STDOUT, run

__version__ = '0.2.0'
__date__ = '2019-06-26'
__version__ = '0.3.0'
__date__ = '2021-12-09'

#-------------------------------------------------------------------------------

Expand Down
5 changes: 2 additions & 3 deletions scripts/convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,15 @@

#-------------------------------------------------------------------------------

__version__ = '0.2.5'
__date__ = '2021-04-12'
__version__ = '0.3.0'
__date__ = '2021-12-09'

#-------------------------------------------------------------------------------
# Paths and fileames
#-------------------------------------------------------------------------------

rootDir = dirname(realpath(__file__)) + '/../'

#hla_convert = rootDir + 'dat/ref/hla.convert.p'
hla_convert_json = rootDir + 'dat/ref/hla.convert.json'

#-------------------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions scripts/extract.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
from argparse import RawTextHelpFormatter
from arcas_utilities import *

__version__ = '0.2.5'
__date__ = '2021-04-12'
__version__ = '0.3.0'
__date__ = '2021-12-09'

#-------------------------------------------------------------------------------
# Extract Reads
Expand Down
5 changes: 2 additions & 3 deletions scripts/genotype.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,15 @@
from arcas_utilities import *
from align import *

__version__ = '0.2.5'
__date__ = '2021-04-12'
__version__ = '0.3.0'
__date__ = '2021-12-09'

#-------------------------------------------------------------------------------
# Paths and filenames
#-------------------------------------------------------------------------------

rootDir = os.path.dirname(os.path.realpath(__file__)) + '/../'

#hla_p = rootDir + 'dat/ref/hla.p'
hla_json = rootDir + 'dat/ref/hla.p.json'
hla_idx = rootDir + 'dat/ref/hla.idx'
hla_freq = rootDir + 'dat/info/hla_freq.tsv'
Expand Down
4 changes: 2 additions & 2 deletions scripts/merge.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@

from arcas_utilities import check_path

__version__ = '0.2.0'
__date__ = '2019-06-26'
__version__ = '0.3.0'
__date__ = '2021-12-09'

#-------------------------------------------------------------------------------

Expand Down
5 changes: 2 additions & 3 deletions scripts/partial.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,15 @@
from align import *
from genotype import expectation_maximization

__version__ = '0.2.5'
__date__ = '2021-04-12'
__version__ = '0.3.0'
__date__ = '2021-12-09'

#-------------------------------------------------------------------------------
# Paths and filenames
#-------------------------------------------------------------------------------

rootDir = os.path.dirname(os.path.realpath(__file__)) + '/../'

#partial_p = rootDir + 'dat/ref/hla_partial.p'
partial_json = rootDir + 'dat/ref/hla_partial.p.json'
partial_idx = rootDir + 'dat/ref/hla_partial.idx'
hla_freq = rootDir + 'dat/info/hla_freq.tsv'
Expand Down
8 changes: 2 additions & 6 deletions scripts/reference.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@

from arcas_utilities import *

__version__ = '0.2.5'
__date__ = '2021-04-12'
__version__ = '0.3.0'
__date__ = '2021-12-09'

#-------------------------------------------------------------------------------
# Paths and fileames
Expand All @@ -59,17 +59,13 @@
hla_dat = rootDir + 'dat/IMGTHLA/hla.dat'
hla_nom_g = rootDir + 'dat/IMGTHLA/wmda/hla_nom_g.txt'
hla_nom_p = rootDir + 'dat/IMGTHLA/wmda/hla_nom_p.txt'
#hla_convert = rootDir + 'dat/ref/hla.convert.p'
hla_convert_json = rootDir + 'dat/ref/hla.convert.json'
hla_fa = rootDir + 'dat/ref/hla.fasta'
partial_fa = rootDir + 'dat/ref/hla_partial.fasta'
#hla_p = rootDir + 'dat/ref/hla.p'
#partial_p = rootDir + 'dat/ref/hla_partial.p'
hla_json = rootDir + 'dat/ref/hla.p.json'
partial_json = rootDir + 'dat/ref/hla_partial.p.json'
hla_idx = rootDir + 'dat/ref/hla.idx'
partial_idx = rootDir + 'dat/ref/hla_partial.idx'
#parameters = rootDir + 'dat/info/parameters.p'
parameters_json = rootDir + 'dat/info/parameters.json'

#-------------------------------------------------------------------------------
Expand Down

0 comments on commit c382f2e

Please sign in to comment.