Skip to content

Commit

Permalink
Clarify patient/sample removing examples in the docs
Browse files Browse the repository at this point in the history
  • Loading branch information
forus committed Jun 28, 2024
1 parent bdc5ea5 commit 9fc5e02
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/Data-Loading-Maintaining-Studies.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ To remove a patient from a study, run:

You can specify multiple studies separated by comma. Here is an example of removing patient information from two studies.
```
./cbioportalImporter.py remove-patients --study_ids study1_stable_id,study2_stable_id --patient_ids patient1_stable_id
./cbioportalImporter.py remove-patients --study_ids study1_stable_id,study2_stable_id --patient_ids patient1_stable_id,patient2_stable_id
```

The patient with such stable id has to exist in each study. Otherwise, error will be thrown.
The patients with given stable ids have to exist in each study. Otherwise, error will be thrown.

## Deleting sample information

Expand All @@ -82,7 +82,7 @@ To remove a sample from a study, run:

You can specify multiple studies separated by comma. Here is an example of removing sample information from two studies.
```
./cbioportalImporter.py remove-samples --study_ids study1_stable_id,study2_stable_id --sample_ids sample1_stable_id
./cbioportalImporter.py remove-samples --study_ids study1_stable_id,study2_stable_id --sample_ids sample1_stable_id,sample2_stable_id
```

The sample with such stable id has to exist in each study. Otherwise, error will be thrown.
The samples with given stable ids have to exist in each study. Otherwise, error will be thrown.

0 comments on commit 9fc5e02

Please sign in to comment.