You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: kb_python/extract.py
+3-4
Original file line number
Diff line number
Diff line change
@@ -233,16 +233,15 @@ def extract(
233
233
):
234
234
"""
235
235
Extracts sequencing reads that were pseudo-aligned to an index for specific genes/transcripts.
236
-
Note: Multimapped reads will also be extracted.
237
236
238
237
fastq: Single fastq file containing sequencing reads
239
238
index_path: Path to kallisto index
240
239
targets: Gene or transcript names for which to extract the raw reads that align to the index
241
240
out_dir: Path to output directory
242
241
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
246
245
mm: Also extract reads that multi-mapped to several genes, defaults to `False`
247
246
t2g_path: Path to transcript-to-gene mapping file (required when target_type = gene or extract_all = True)
248
247
temp_dir: Path to temporary directory, defaults to `tmp`
0 commit comments