We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea11ded commit 03137b3Copy full SHA for 03137b3
kipoiseq/extractors/gtf.py
@@ -61,7 +61,7 @@ def _filter_biotype_proteincoding(gtf_df):
61
62
def _filter_tag(gtf_df, regex_contains):
63
return gtf_df.query(
64
- "tag.notnull() & tag.str.contains('{}')".format(regex_contains)
+ "tag.notnull().values & tag.str.contains('{}').values".format(regex_contains)
65
)
66
67
0 commit comments