Skip to content
Snippets Groups Projects
Commit 90bf01f9 authored by Remi  PLANEL's avatar Remi PLANEL
Browse files

Remove longest_perfect_match_length from dataframe

parent 5964446a
No related branches found
No related tags found
No related merge requests found
Pipeline #26167 passed with stage
in 48 seconds
......@@ -95,8 +95,7 @@ def on_target_predict(seq, genome=None, seed_sizes=[8, 9, 10, 11, 12]):
"pampos",
"strand",
"recid",
"max_matching_len",
"max_matching_seq",
"longest_perfect_match",
"pam_seq",
"features",
],
......@@ -113,11 +112,11 @@ def on_target_predict(seq, genome=None, seed_sizes=[8, 9, 10, 11, 12]):
"off_target_pampos": off_t[2],
"off_target_strand": off_t[3],
"off_target_recid": off_t[4],
"off_target_longest_perfect_match": off_t[6],
"off_target_pam_seq": off_t[7],
"off_target_longest_perfect_match": off_t[5],
"off_target_pam_seq": off_t[6],
"off_target_good_orientation": None,
}
index_features = 8
index_features = 7
# Loop through features associated to an off-target position
if len(off_t[index_features]) > 0:
# Loop for each feature
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment