# HG changeset patch # User gaelcge # Date 1659469203 0 # Node ID 230b75cab476241cec71d455ee5b55cf7bc80265 "planemo upload commit ff0d185541dc4b0a5839fca166f1beb459dee61c" diff -r 000000000000 -r 230b75cab476 README.md --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/README.md Tue Aug 02 19:40:03 2022 +0000 @@ -0,0 +1,18 @@ +# GenAP2 Galaxy implementation of CellRanger-ATAC +Disclaimer: This wrapper for CellRanger-ATAC is not developed or supported by 10x Genomics. This wrapper was written by scientists at GenAP to help facilitate usage of CellRanger tools inside of Galaxy. +Please find the full, official 10x Genomics licensing information at : https://support.10xgenomics.com/docs/license. + +What is CellRanger ATAC? + +https://support.10xgenomics.com/single-cell-atac/software/pipelines/latest/what-is-cell-ranger-atac + +Naming convention of FASTQ files internally in Galaxy follows thes guidelines: + +https://support.10xgenomics.com/single-cell-atac/software/pipelines/latest/using/fastq-input#rightname + +Installation: +1) Install this wrapper via the Galaxy toolshed. +2) CellRanger-ATAC (v2.0.0) is required for this wrapper and should be installed separately (see below). + +To use this tool, we assume that cellranger-atac (v.2.0.0) is available to Galaxy on the system, via the command cellranger-atac. Unfortunately at this point, we cannot include Cellranger-ATAC as part of this wrapper due to Licensing and distribution limitations. For more information on how to install CellRanger-ATAC on your system, please see : +https://support.10xgenomics.com/single-cell-atac/software/pipelines/latest/installation diff -r 000000000000 -r 230b75cab476 Tool-test.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Tool-test.txt Tue Aug 02 19:40:03 2022 +0000 @@ -0,0 +1,38 @@ + ***** links to input data for 10X single-analysis and Seurat tutorials **** + **** + +***** Single-Cell ATACseq (10X Genomics) - from fastq to dimentionality reduction + +Fastq = https://support.10xgenomics.com/single-cell-atac/datasets/1.2.0/atac_v1_pbmc_5k +small_fastq_files = https://support.10xgenomics.com/single-cell-atac/datasets/2.0.0/atac_pbmc_500_nextgem + +Software = Cell Ranger ATAC 1.2.0 (https://support.10xgenomics.com/single-cell-atac/software/pipelines/latest/installation) + +Tutorial from cell ranger output to clustering = https://satijalab.org/signac/articles/pbmc_vignette.html + + + +****** Multiome (ARC) = scRNA + scATACseq (10X Genomics) - from fastq to dimentionality reduction + +Fastq = https://support.10xgenomics.com/single-cell-multiome-atac-gex/datasets/1.0.0/pbmc_unsorted_3k + +Software = Cell Ranger ARC 1.0.0 (https://support.10xgenomics.com/single-cell-multiome-atac-gex/software/pipelines/latest/installation) + +Tutorial from cell ranger output to clustering (PBMC - RNA & ATAC) = https://satijalab.org/seurat/v4.0/weighted_nearest_neighbor_analysis.html + + + + ********** Pipeline implentation ********* + ******* + +***** Galaxy + + + +***** NextFlow +https://github.com/WarrenLab/single-cell +https://figshare.com/articles/BICF_Cellranger_count_Analysis_Workflow/9702698 +https://nf-co.re/scrnaseq/1.0.0 +https://hub.docker.com/r/nfcore/demultiplex + + diff -r 000000000000 -r 230b75cab476 cellranger_atac.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cellranger_atac.xml Tue Aug 02 19:40:03 2022 +0000 @@ -0,0 +1,87 @@ + + performs processing of 10x single-cell ATAC-seq data. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +@misc{renameTODO, + author = 10x Genomics, + year = 2021, + title = CellRanger-ATAC, + url = {https://support.10xgenomics.com/single-cell-atac/software/pipelines/latest/using/fastq-input#ATACIntro}, +} + + diff -r 000000000000 -r 230b75cab476 tool_setup.md --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tool_setup.md Tue Aug 02 19:40:03 2022 +0000 @@ -0,0 +1,19 @@ +# Setup for creating a Galaxy wrapper for Cellranger-ATAC with planemo + +Make sure you have a working planemo installation. To find out how to install planemo, check here: https://planemo.readthedocs.io/en/latest/installation.html + +## Generate galaxy tool xml using planemo tool_init +planemo tool_init --force \ + --id 'cellranger_atac' \ + --name 'Process 10x Genomics single-cell ATAC-seq data using CellRanger-ATAC.'\ + --example_command 'cellranger-atac count' \ + --cite_url 'https://support.10xgenomics.com/single-cell-atac/software/pipelines/latest/using/fastq-input#ATACIntro' \ + --help_from_command 'cellranger-atac' + + ## Test run with very small test data + cellranger-atac count --id=sample345 \ + --reference= \ + --fastqs=/home/florian/GenAP2/test_datasets/cellranger_ATAC/atac_pbmc_500_nextgem_fastqs/100k_sub \ + --sample=test \ + --localcores=2 \ + --localmem=6 \ No newline at end of file