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 854eb7e commit 4658378Copy full SHA for 4658378
malariagen_data/anoph/genome_features.py
@@ -149,12 +149,12 @@ def genome_features(
149
df_part = df_part.query(f"end >= {r.start}")
150
parts.append(df_part)
151
df = pd.concat(parts, axis=0)
152
- return df.reset_index(drop=True).sort_values(["contig", "start"]).copy()
+ return df.sort_values(["contig", "start"]).reset_index(drop=True).copy()
153
154
return (
155
self._genome_features(attributes=attributes_normed)
156
- .reset_index(drop=True)
157
.sort_values(["contig", "start"])
+ .reset_index(drop=True)
158
.copy()
159
)
160
0 commit comments