Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor adjustments to docs and syntax #17

Merged
merged 4 commits into from
Aug 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ venv/
ENV/
env.bak/
venv.bak/
.conda

# Spyder project settings
.spyderproject
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# IRescue - <ins>I</ins>nterspersed <ins>Re</ins>peats <ins>s</ins>ingle-<ins>c</ins>ell q<ins>u</ins>antifi<ins>e</ins>r

<img align="right" height="160" src="docs/logo.png">
IRescue quantifies the expression fo transposable elements (TEs) subfamilies in single cell RNA sequencing (scRNA-seq) data that performs UMI-deduplication with sequencing errors correction considering all TE subfamilies associated to multi-mapping reads. TE counts are written on a sparse matrix (similar to Cell Ranger's output) compatible with Seurat, Scanpy and other toolkits.
IRescue quantifies the expression fo transposable elements (TEs) subfamilies in single cell RNA sequencing (scRNA-seq) data, performing UMI-deduplication with sequencing errors correction and probabilistic assignment of multi-mapping reads by Expectation-Maximization (EM). The output is written on a sparse matrix compatible with Seurat, Scanpy and other toolkits.

## Content

Expand Down
2 changes: 1 addition & 1 deletion irescue/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.1.0-beta.2'
__version__ = '1.1.0'
3 changes: 0 additions & 3 deletions irescue/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,6 @@ def parseArguments():
"presence in bam file.")
parser.add_argument('--keeptmp', action='store_true',
help="Keep temporary files under <output_dir>/tmp.")
#parser.add_argument('--tmpdir', default='irescue_out/tmp', metavar='DIR',
# help="Directory to store temporary files "
# "(default: %(default)s).")
parser.add_argument('-v', '--verbose', action='store_true',
help="Writes a lot of stuff to stderr, such as "
"chromosomes as they are mapped and cell barcodes "
Expand Down
Loading