Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
sscocaller
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
BioCellGen-public
sscocaller
Commits
d2c1a8c4
Commit
d2c1a8c4
authored
4 years ago
by
Ruqian Lyu
Browse files
Options
Downloads
Patches
Plain Diff
readme and nimble
parent
82dc57c6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
README.md
+38
-1
38 additions, 1 deletion
README.md
src/sscocaller.nim
+516
-0
516 additions, 0 deletions
src/sscocaller.nim
sscocaller.nimble
+18
-0
18 additions, 0 deletions
sscocaller.nimble
tests/test.sh
+2
-0
2 additions, 0 deletions
tests/test.sh
with
574 additions
and
1 deletion
README.md
+
38
−
1
View file @
d2c1a8c4
# sscocaller
## sscocaller: Calling crossovers from single-sperm DNA sequencing reads
It takes the large bam file which contains aligned DNA reads from a list of single sperm cells and summarizes allele
counts for informative SNP markers. A HMM model is applied for haplotypin each sperm and viterbi algorithm is run
for deriving the inferred haplotype sequence against the list of SNP markers.
## Inputs
-
Bam, Reads from single sperm cells with BC tag, eg. single-cell alignment pipeline (cellranger)
-
VCF, variant calling file that contains the list of SNPs provided
-
barcodeFile, the list of cell barcodes
## Outputs
-
Generate per chr allele counts matrices
-
Sequence of inferred viterbi state (haplotype state) per chr
## Usage
Obtain allele counts for cell barcodes listed in barcodeFile at the SNP positions in VCF from the BAM file.
Usage:
sscocaller [options]
<BAM>
<VCF>
<barcodeFile>
<out_prefix>
Options:
-t --threads
<threads>
number of BAM decompression threads [default: 4]
-MQ --minMAPQ
<mapq>
Minimum MAPQ for read filtering [default: 20]
-BQ --baseq
<baseq>
base quality threshold for a base to be used for counting [default: 13]
-CHR --chrom
<chrom>
the selected chromsome (whole genome if not supplied,separate by comma if multiple chroms)
-minDP --minDP
<minDP>
the minimum DP for a SNP to be included in the output file [default: 1]
-maxDP --maxDP
<maxDP>
the maximum DP for a SNP to be included in the output file [default: 10]
-chrName --chrName
<chrName>
the chr names with chr prefix or not, if not supplied then no prefix
-thetaREF --thetaREF
<thetaREF>
the theta for the binomial distribution conditioning on hidden state being REF [default: 0.1]
-thetaALT --thetaALT
<thetaALT>
the theta for the binomial distribution conditioning on hidden state being ALT [default: 0.9]
-cmPmb --cmPmb
<cmPmb>
the average centiMorgan distances per megabases default 0.1 cm per Mb [default 0.1]
-h --help show help
Examples
./sscocaller --threads 10 AAAGTAGCACGTCTCT-1.raw.bam AAAGTAGCACGTCTCT-1.raw.bam.dp3.alt.vcf.gz barcodeFile.tsv ./percell/ccsnp-
This diff is collapsed.
Click to expand it.
src/sscocaller.nim
0 → 100755
+
516
−
0
View file @
d2c1a8c4
This diff is collapsed.
Click to expand it.
sscocaller.nimble
0 → 100644
+
18
−
0
View file @
d2c1a8c4
# Package
version = "0.1.0"
author = "Ruqian Lyu"
description = "sscocaller: calling crossover events from single-sperm DNA sequencing datasets"
license = "MIT"
srcDir = "src"
bin = @["sscocaller"]
# Dependencies
requires "nim >= 1.4.0","docopt","hts >= 0.3.4"
requires "http://github.com/sdwfrost/rmath.git"
# task test, "run the tests":
# exec "nim c -d:useSysAssert -d:useGcAssert --lineDir:on --debuginfo -r tests/test_groups"
# exec "bash tests/functional-tests.sh"
This diff is collapsed.
Click to expand it.
tests/test.sh
0 → 100644
+
2
−
0
View file @
d2c1a8c4
./code/sscocaller
--threads
2
--chrom
6 data/AAAGTAGCACGTCTCT-1.raw.bam data/AAAGTAGCACGTCTCT-1.raw.bam.dp3.alt.vcf.gz data/bcAA.tsv ./percell/ccsnp-
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment