-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
26 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,26 @@ | ||
Example run on Fetal Liver dataset | ||
---------------------------------- | ||
---------------------------------- | ||
Cellsnake can be run directly using the snakemake workflow. We recommend the wrapper but the snakemake workflow give more control in some use cases. | ||
|
||
Lets try workflow on Fetal Liver dataset. You can download the dataset here: | ||
|
||
|
||
|
||
Since this dataset have 6 samples, rather than one MT percentage, make it automatic so that each sample. A minimal run is also enough, we do not want to analyze samples seperately. | ||
|
||
```shell | ||
snakemake -j 10 --config option=minimal percent_mt=auto | ||
``` | ||
|
||
Then we can run integration. | ||
```shell | ||
snakemake -j 10 --config option=integration | ||
``` | ||
|
||
Now it is time to work on the integrated sample. We can run full advanced run on the integrated object which is always generates at the same location. | ||
```shell | ||
snakemake -j 10 --config datafolder=analyses_integrated/seurat/integrated.rds resolution=0.3 route=advanced is_integrated_sample=True --rerun-incomplete | ||
``` | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters