Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Sam Nooij
Jovian screener
Commits
82d9b7f3
Commit
82d9b7f3
authored
Jun 30, 2020
by
Sam Nooij
Browse files
Fix bug with column 1 name
parent
84041347
Changes
1
Hide whitespace changes
Inline
Side-by-side
bin/filter_blast_hits_by_target_length.py
View file @
82d9b7f3
...
...
@@ -124,7 +124,7 @@ def main():
#6. Reset dataframe to valid BLAST output
new_df
.
reset_index
(
inplace
=
True
)
new_df
=
new_df
[[
0
,
"index"
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
,
10
,
11
]]
new_df
=
new_df
[[
0
,
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
,
10
,
11
]]
new_df
[
11
]
=
new_df
[
11
].
astype
(
int
)
#make sure bitscores are still int
#7. And write the output to a file
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment