Skip to content

Commit c80647d

Browse files
Update extract.py
1 parent 2ee20d4 commit c80647d

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

kb_python/extract.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -233,16 +233,15 @@ def extract(
233233
):
234234
"""
235235
Extracts sequencing reads that were pseudo-aligned to an index for specific genes/transcripts.
236-
Note: Multimapped reads will also be extracted.
237236
238237
fastq: Single fastq file containing sequencing reads
239238
index_path: Path to kallisto index
240239
targets: Gene or transcript names for which to extract the raw reads that align to the index
241240
out_dir: Path to output directory
242241
target_type: 'gene' (default) or 'transcript' -> Defines whether targets are gene or transcript names
243-
extract_all: Extracts reads for all genes or transcripts (as defined in target_type), defaults to `False`. Might take a long time to run when the reference index contains a large number of genes. Set targets = None when using extract_all.
244-
extract_all_fast: Extracts all pseudo-aligned reads, defaults to `False`. Does not break down output by gene/transcript. Set targets = None when using extract_all_fast.
245-
extract_all_unmapped: Extracts all unmapped reads, defaults to `False`. Set targets = None when using extract_all_unmapped.
242+
extract_all: Extracts reads for all genes or transcripts (as defined in target_type), defaults to `False`. Might take a long time to run when the reference index contains a large number of genes. Set targets = None when using extract_all
243+
extract_all_fast: Extracts all pseudo-aligned reads, defaults to `False`. Does not break down output by gene/transcript. Set targets = None when using extract_all_fast
244+
extract_all_unmapped: Extracts all unmapped reads, defaults to `False`. Set targets = None when using extract_all_unmapped
246245
mm: Also extract reads that multi-mapped to several genes, defaults to `False`
247246
t2g_path: Path to transcript-to-gene mapping file (required when target_type = gene or extract_all = True)
248247
temp_dir: Path to temporary directory, defaults to `tmp`

0 commit comments

Comments
 (0)