Skip to content

Commit

Permalink
no longer duplicate rows in metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
colinvwood committed Nov 1, 2024
1 parent 50e9457 commit cd19ddc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"\n",
"# NOTE: change me\n",
"md_fp = ''\n",
"md = pd.read_csv(md_fp, sep='\\t', dtype={'sample-id': str}, skiprows=[1])\n",
"md = pd.read_csv(md_fp, sep='\\t', dtype={'sample-id': str})\n",
"\n",
"md = md.rename({'sample-id': 'sample_id'}, axis=1)\n",
"\n",
Expand Down Expand Up @@ -791,7 +791,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.10.14"
"version": "3.12.5"
}
},
"nbformat": 4,
Expand Down
4 changes: 2 additions & 2 deletions gut_to_soil_manuscript_figures/notebooks/qcpr-plots.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"\n",
"# NOTE: change me\n",
"md_fp = ''\n",
"md = pd.read_csv(md_fp, sep='\\t', dtype={'sample-id': str}, skiprows=[1])\n",
"md = pd.read_csv(md_fp, sep='\\t', dtype={'sample-id': str})\n",
"\n",
"md = md.rename({'sample-id': 'sample_id'}, axis=1)\n",
"\n",
Expand Down Expand Up @@ -622,7 +622,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.10.14"
"version": "3.12.5"
}
},
"nbformat": 4,
Expand Down

0 comments on commit cd19ddc

Please sign in to comment.