Skip to content

Commit

Permalink
update for 10x file format change
Browse files Browse the repository at this point in the history
  • Loading branch information
phbradley committed Oct 6, 2021
1 parent 1f5509a commit e4b6a30
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion make_10x_clones_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,9 @@ def read_tcr_data(
else:
clonotype2barcodes[clonotype].append( bc )

print l['productive']
## experimenting here ########################################3
if l['productive'] != 'True':
if l['productive'].lower() != 'true':
continue
if l['cdr3'].lower() == 'none' or l['cdr3_nt'].lower() == 'none':
continue
Expand Down

0 comments on commit e4b6a30

Please sign in to comment.