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: Snakefile
+14-19Lines changed: 14 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -52,6 +52,18 @@ if config["run_identification"] and config["use_precomputed_salmon_index"]:
52
52
sys.stderr.write("run_identification will be overridden and pre-provided salmon index, id and info tables will be used\n")
53
53
54
54
55
+
# If differential, make sure that sample table only has two conditions & to set a contrast name
56
+
ifconfig["run_differential"]:
57
+
assertsample_tbl["condition"].nunique() ==2, f"condition column in sample table must only contain two distinct conditions, following n found - {sample_tbl['condition'].nunique()}"
58
+
# firs key in sample table condition column = base_key
# If False, pipeline jumps to generating a GTF of last exons from the reference input only
69
69
run_identification: True
70
70
71
-
# Whether to run differential usage analysis with SatuRn - bool
71
+
# Whether to run differential usage analysis with DEXSeq - bool
72
72
# If False, pipeline terminates after generating matrices of summarised quantification for each 'last exon isoform'
73
73
run_differential: True
74
74
@@ -79,7 +79,7 @@ use_provided_novel_les: False
79
79
# Whether to use pre-computed salmon index to quantify samples. Useful if wish to quantify multiple datasets with a common annotation and wish to save on unnecessary computation
80
80
# Note: If set to True, run_identification will be overriden
81
81
# Note: You will also need to provide the tx2le, tx2gene, le2gene and 'info' tables produced for the same run.
0 commit comments