-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Adds test-data * Create README.md --------- Co-authored-by: Pedro Madrigal <[email protected]>
- Loading branch information
1 parent
52c227a
commit 56fab2b
Showing
11 changed files
with
8,954,146 additions
and
0 deletions.
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
## Test datasets for Single-Cell Expression Atlas workflow | ||
|
||
The workflow can be executed for two types of scRNA-seq technologies: plate-based and droplet-based. | ||
|
||
1. For plate-based data (test-plate). More details on SC Expression Atlas [E-MTAB-9801](https://www.ebi.ac.uk/gxa/sc/experiments/E-MTAB-9801): | ||
|
||
``` | ||
nextflow run main.nf \ | ||
--slurm -resume \ | ||
--dir_path test-plate \ | ||
--output_path test-plate-out \ | ||
--celltype_field authors_cell_type_-_ontology_labels | ||
``` | ||
here, `--technology` is not specified because it set to plate by default. | ||
|
||
2. For droplet-based data (test-droplet). More details on SC Expression Atlas [E-GEOD-130148](https://www.ebi.ac.uk/gxa/sc/experiments/E-GEOD-130148): | ||
|
||
``` | ||
nextflow run main.nf \ | ||
--slurm -resume \ | ||
--dir_path test-droplet \ | ||
--output_path test-droplet-out \ | ||
--technology droplet \ | ||
--celltype_field authors_cell_type_-_ontology_labels | ||
``` | ||
|
||
here, for both the examples `--celltype_field` is optional |
Oops, something went wrong.