File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11[metadata]
22name = stitchr
3- version = 1.2.0
3+ version = 1.2.1
44author = Jamie Heather
55author_email = jheather@mgh.harvard.edu
66description = Stitch together coding TCR sequences from V/J/CDR3 information
Original file line number Diff line number Diff line change 1515import warnings
1616
1717
18- __version__ = '1.2.0 '
18+ __version__ = '1.2.1 '
1919__author__ = 'Jamie Heather'
2020__email__ = 'jheather@mgh.harvard.edu'
2121
Original file line number Diff line number Diff line change 2222else :
2323 import importlib .resources as importlib_resources # importlib.resources
2424
25- __version__ = '1.4.1 '
25+ __version__ = '1.4.2 '
2626__author__ = 'Jamie Heather'
2727__email__ = 'jheather@mgh.harvard.edu'
2828
@@ -136,7 +136,7 @@ def get_chain(v, j):
136136 return 'TRA'
137137 elif v .startswith ('TRG' ) and j .startswith ('TRG' ):
138138 return 'TRG'
139- elif v .startswith ('TRD' ) and j .startswith ('TRD' ):
139+ elif ( v .startswith ('TRA' ) or v . startswith ( ' TRD') ) and j .startswith ('TRD' ):
140140 return 'TRD'
141141
142142 elif v .startswith ('IGH' ) and j .startswith ('IGH' ):
You can’t perform that action at this time.
0 commit comments