Skip to content
Snippets Groups Projects
Commit 34dcef40 authored by Blaise Li's avatar Blaise Li
Browse files

Using piRNA normalization in sRNA-seq.

parent 4f12e074
No related branches found
No related tags found
No related merge requests found
# Copyright (C) 2020 Blaise Li
# Copyright (C) 2020-2022 Blaise Li
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
......@@ -495,14 +495,14 @@ COND_COLUMNS = pd.DataFrame(CONDITIONS).assign(
#SIZE_FACTORS = ["raw", "deduped", size_selected, "mapped", "siRNA", "miRNA"]
#SIZE_FACTORS = [size_selected, "mapped", "miRNA"]
# TESTED_SIZE_FACTORS = ["mapped", "non_structural", "siRNA", "miRNA", "median_ratio_to_pseudo_ref"]
TESTED_SIZE_FACTORS = ["mapped", "non_structural", "all_sisiuRNA", "miRNA", "median_ratio_to_pseudo_ref"]
TESTED_SIZE_FACTORS = ["mapped", "non_structural", "all_sisiuRNA", "piRNA", "miRNA", "median_ratio_to_pseudo_ref"]
#SIZE_FACTORS = ["mapped", "miRNA", "median_ratio_to_pseudo_ref"]
# "median_ratio_to_pseudo_ref" is a size factor adapted from
# the method described in the DESeq paper, but with addition
# and then substraction of a pseudocount, in order to deal with zero counts.
# This seems to perform well (see "test_size_factor" results).
DE_SIZE_FACTORS = ["non_structural", "median_ratio_to_pseudo_ref"]
SIZE_FACTORS = ["non_structural"]
SIZE_FACTORS = ["non_structural", "piRNA"]
#NORMALIZER = "median_ratio_to_pseudo_ref"
# For metagene analyses
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment