Skip to content

Commit

Permalink
update to v1.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
hxj5 committed Feb 23, 2023
1 parent f832e4d commit a5b5126
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 6 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dnl - github:htslib https://github.com/samtools/htslib/blob/550c6b1b98414ef60eeb
dnl - github:samtools https://github.com/samtools/samtools/blob/develop/configure.ac

AC_PREREQ([2.63])
AC_INIT([cellsnp-lite], [1.2.2], [[email protected]])
AC_INIT([cellsnp-lite], [1.2.3], [[email protected]])

dnl Use subdir-objects option so that the source files in subdir `src`
dnl could be compiled successfully
Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Xianjie Huang'

# The full version, including alpha/beta/rc tags
release = 'v1.2.2'
release = 'v1.2.3'


# -- General configuration ---------------------------------------------------
Expand Down
11 changes: 8 additions & 3 deletions doc/manual.rst
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ version you are using):

.. code-block:: html

Version: 1.2.2 (htslib 1.11-79-g53d7277)
Version: 1.2.3 (htslib 1.11-79-g53d7277)
Usage: cellsnp-lite [options]

Options:
Expand Down Expand Up @@ -168,7 +168,7 @@ version you are using):
missing REFs in the input VCF for Mode 1.
--chrom STR The chromosomes to use, comma separated [1 to 22]
--cellTAG STR Tag for cell barcodes, turn off with None [CB]
--UMItag STR Tag for UMI: UR, Auto, None. For Auto mode, use UR if barcodes are inputted,
--UMItag STR Tag for UMI: UB, Auto, None. For Auto mode, use UB if barcodes are inputted,
otherwise use None. None mode means no UMI but read counts [Auto]
--minCOUNT INT Minimum aggragated count [20]
--minMAF FLOAT Minimum minor allele frequency [0.00]
Expand All @@ -180,7 +180,10 @@ version you are using):
(when use UMI) or UNMAP,SECONDARY,QCFAIL,DUP (otherwise)]
--minLEN INT Minimum mapped length for read filtering [30]
--minMAPQ INT Minimum MAPQ for read filtering [20]
--maxDEPTH INT Maximum depth for one site of one file; 0 means highest possible value [0]
--maxPILEUP INT Maximum pileup for one site of one file (including those filtered reads),
avoids excessive memory usage; 0 means highest possible value [0]
--maxDEPTH INT Maximum depth for one site of one file (excluding those filtered reads),
avoids excessive memory usage; 0 means highest possible value [0]
--countORPHAN If use, do not skip anomalous read pairs.

Note that the "--maxFLAG" option is now deprecated, please use "--inclFLAG" or "--exclFLAG"
Expand All @@ -204,6 +207,8 @@ Some Details:
Notes
-----

Since v1.2.3, ``UB``, instead of ``UR``, is used as default UMI tag when barcodes are given.

The ``Too many open files`` issue has been fixed (since v1.2.0). The issue is commonly
caused by exceeding the `RLIMIT_NOFILE`_ resource limit (ie. the max number of files allowed
to be opened by system for single process), which is typically 1024. Specifically, in the
Expand Down
11 changes: 11 additions & 0 deletions doc/release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@
History
=======

Release v1.2.3 (23/02/2023)
===========================
* use UB instead of UR as default UMI tag when barcodes are given.
* add --maxPILEUP and update --maxDEPTH.
* fix the segmentation fault of getopt_long when given unrecognized
cmdline parameters.
* allow more cmdline options in lower case.
* print CMD, VERSION and global settings.
* improve logging output.
* update manual according to issues (till Feb 23, 2023).

Release v1.2.2 (03/11/2021)
===========================
* add -f/--refseq so that the real (genomic) ref could be extracted from
Expand Down
2 changes: 1 addition & 1 deletion src/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#define DEVELOP 0

#define CSP_NAME "cellsnp-lite"
#define CSP_VERSION "1.2.2"
#define CSP_VERSION "1.2.3"
#define CSP_AUTHOR "hxj5<[email protected]>"

#define JF_ZIP_TYPE 2 // 1, gzip; 2, bgzip.
Expand Down

0 comments on commit a5b5126

Please sign in to comment.