We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2714bc1 commit cd3243aCopy full SHA for cd3243a
exps/2-dm-real/workflow/scripts/parse_res.py
@@ -86,7 +86,7 @@ def parse_pantas(path):
86
if abs(e.dpsi) < FILTER:
87
continue
88
if e.etype == "IR":
89
- e.dpsi = 1 - e.dpsi
+ e.dpsi = -e.dpsi # Pantas alternative isoform = rMATS canonical isoform
90
event_pantas[e.etype].append(e)
91
return event_pantas
92
scripts/remap.py
@@ -187,7 +187,7 @@ def main(args):
187
junction2_nodes = "."
188
W1, W2 = W2, W1
189
psi_c1, psi_c2 = psi_c2, psi_c1
190
- dpsi = 1.0-float(dpsi)
+ dpsi = -float(dpsi)
191
192
htype = "reference"
193
if annotation_type == "annotated":
0 commit comments