Skip to content

Commit 9ec3bcc

Browse files
committed
created new branch for sarcoma data
1 parent 8000968 commit 9ec3bcc

6 files changed

Lines changed: 59 additions & 0 deletions

File tree

build/sarcpdo/README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Sarcoma Organoid Dataset
2+
3+
This dataset comes from a [recent publication](https://www.cell.com/cell-stem-cell/fulltext/S1934-5909(24)00296-0?uuid=uuid%3Abb17ce2a-7cc0-48bd-a56d-3bc46a4d5541) with over 100 organoids
4+
from patient sarcomas.
5+
6+
## Samples
7+
8+
The sample information is contained in [this synapse
9+
table](https://www.synapse.org/Synapse:syn61894699/tables/)
10+
11+
12+
13+
## Omics data
14+
15+
## Drug information
16+
17+
## Experimental measurements

build/sarcpdo/build_drugs.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/bash
2+
set -euo pipefail
3+
4+
trap 'echo "Error on or near line $LINENO while executing: $BASH_COMMAND"; exit 1' ERR
5+
6+
echo "Running script with token and drugFile $1"
7+
8+
9+
echo "Running build_drug_desc.py..."
10+
#python build_drug_desc.py --drugtable /tmp/beataml_drugs.tsv --desctable /tmp/beataml_drug_descriptors.tsv.gz

build/sarcpdo/build_exp.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
set -euo pipefail
3+
4+
trap 'echo "Error on or near line $LINENO while executing: $BASH_COMMAND"; exit 1' ERR
5+
6+
echo "Running script with token and curSamples $1 and drugFile $2."
7+

build/sarcpdo/build_omics.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
set -euo pipefail
3+
4+
trap 'echo "Error on or near line $LINENO while executing: $BASH_COMMAND"; exit 1' ERR
5+
6+
echo "Running script with token, curSamples $2, and genes $1."
7+

build/sarcpdo/build_samples.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
set -euo pipefail
3+
4+
trap 'echo "Error on or near line $LINENO while executing: $BASH_COMMAND"; exit 1' ERR
5+
6+
echo ""
7+

build/sarcpdo/requirements.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
pandas
2+
wget==3.2
3+
requests
4+
synapseclient
5+
argparse
6+
numpy==1.26.4
7+
openpyxl
8+
matplotlib
9+
scikit-learn
10+
mordredcommunity
11+
rdkit

0 commit comments

Comments
 (0)