Skip to content

Run

Author: SeekGene
Time: 3 min
Words: 517 words
Updated: 2026-02-26
Reads: 0 times
SeekArc™ Tools

Run Examples

Example 1: Basic Usage

Set up the necessary configuration files for analysis, including the path to sample data, reference genome path, etc. Run SeekArc™ Tools v1.1.0 using the following command:

shell
seekarctools arc run \
    --rnafq1 /path/to/demo/demo_GE_S1_L001_R1_001.fastq.gz \
    --rnafq2 /path/to/demo/demo_GE_S1_L001_R2_001.fastq.gz \
    --atacfq1 /path/to/demo/demo_arc_S2_L002_R1_001.fastq.gz \
    --atacfq2 /path/to/demo/demo_arc_S2_L002_R2_001.fastq.gz \
    --samplename demo \
    --outdir /path/to/outdir \
    --refpath /path/to/reference/GRCh38 \
    --chemistry DD_AG \
    --include-introns \
    --core 16

Example 2: Rerunning call peaks or call cell with thresholds

If the peaks or cells determined under default parameters do not meet requirements, you can adjust parameters to skip steps like alignment and rerun to save time.

shell
seekarctools arc retry \
    --samplename demo \
    --outdir /path/to/outdir \
    --refpath /path/to/reference/GRCh38 \
    --core 16 \
    --qvalue 0.01 \
    --snapshift 0 \
    --extsize 200 \
    --min_len 200 \
    --min_atac_count 1000 \
    --min_gex_count 500

NOTE

Ensure that files from the previous run have not been deleted or moved. --outdir is the directory path after the first analysis with SeekArc™ Tools v1.1.0. --min_atac_count must be used together with --min_gex_count, otherwise it will not take effect.

Parameter Description

ParameterDescription
--rnafq1Path to expression library R1 FASTQ data.
--rnafq2Path to expression library R2 FASTQ data.
--atacfq1Path to ATAC library R1 FASTQ data.
--atacfq2Path to ATAC library R2 FASTQ data.
--samplenameSample name.
--chemistryChemistry type. Options: DD_AG, DD5_AG.
--outdirOutput directory. Default: ./
--skip_misBDo not allow base mismatches in barcode. Default allows one base mismatch.
--skip_misLDo not allow base mismatches in linker. Default allows one base mismatch.
--skip_multiDiscard Reads that can be corrected to multiple whitelist barcodes. Default corrects to the barcode with the highest proportion.
--skip_lenSkip filtering short reads after adapter filtering, use short reads.
--coreNumber of threads used for analysis.
--include-intronsWhen disabled, only exon Reads are used for quantification; when enabled, intron Reads are also used for quantification.
--refpathPath to reference genome.
--star_pathExternal STAR software path. If the index in the reference genome was built by another STAR, please specify this path.
--qvalueMinimum FDR (q-value) cutoff for peak detection. Default: 0.001.
--nolambdaIf enabled, MACS3 will use background lambda as local lambda. This means macs3 will not consider local bias of peak candidate regions.
--snapshiftShift size for MACS3 peak detection. Default: 0.
--extsizeExtension size for MACS3 peak detection. Default: 400.
--min_lenMinimum length of peak. If none, set to "extsize". Default: 400.
--broadIf enabled, perform broad peak calling, generating results in UCSC gappedPeak format, which encapsulates the nested structure of peaks.
--broad_cutoffThreshold for broad peak calling. Default: 0.1.
--min_atac_countDefine the minimum number of ATAC transposition events (ATAC counts) in cell barcodes.
--min_gex_countDefine the minimum number of UMIs (GEX counts) in cell barcodes.
-h,--helpShow parameter description
0 comments·0 replies