Skip to content

Commit

Permalink
notebooks
Browse files Browse the repository at this point in the history
  • Loading branch information
5im1z committed Jan 9, 2024
1 parent 846db64 commit 02ba77d
Show file tree
Hide file tree
Showing 2 changed files with 614 additions and 578 deletions.
24 changes: 24 additions & 0 deletions RNA_CCLE.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,30 @@
"# Fusion post processing"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"import pandas as pd\n",
"\n",
"old_fusion_fn = \"\"\n",
"new_fusion_fn = \"\"\n",
"\n",
"new = pd.read_csv(new_fusion_fn, sep='\\t')\n",
"old = pd.read_csv(old_fusion_fn, sep='\\t')"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"pd.concat([old, new], ignore_index=True).to_csv(\"fusion_stitched_\" + constants.SAMPLESETNAME + \".csv\", sep='\\t')"
]
},
{
"cell_type": "code",
"execution_count": null,
Expand Down
Loading

0 comments on commit 02ba77d

Please sign in to comment.