Thanks very much for your recent paper, I'm reading this with interest.
I was hoping to confirm your removeMutants code, there are potentially two instances in the notebook:
if removeMutants:
%sql
delete from temp_assays where variant_id is not null or lower(description) like '%mutant%'
or lower(description) like '%mutation%' or lower(description) like '%variant%';
if removeMutants:
%sql
delete from temp_assays where variant_id is null and lower(description) like '%mutant%' or lower(description) like '%variant%'
or lower(description) like '%mutation%';
Thanks again
Thanks very much for your recent paper, I'm reading this with interest.
I was hoping to confirm your removeMutants code, there are potentially two instances in the notebook:
if removeMutants:
%sql
delete from temp_assays where variant_id is not null or lower(description) like '%mutant%'
or lower(description) like '%mutation%' or lower(description) like '%variant%';
if removeMutants:
%sql
delete from temp_assays where variant_id is null and lower(description) like '%mutant%' or lower(description) like '%variant%'
or lower(description) like '%mutation%';
Thanks again