offtracker 1.0.1__zip → 1.0.2__zip
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {offtracker-1.0.1/offtracker.egg-info → offtracker-1.0.2}/PKG-INFO +13 -6
- {offtracker-1.0.1 → offtracker-1.0.2}/README.md +12 -5
- offtracker-1.0.2/offtracker/_version.py +1 -0
- {offtracker-1.0.1 → offtracker-1.0.2}/offtracker/mapping/Snakefile_Trackseq +0 -18
- {offtracker-1.0.1 → offtracker-1.0.2/offtracker.egg-info}/PKG-INFO +13 -6
- offtracker-1.0.1/offtracker/_version.py +0 -1
- {offtracker-1.0.1 → offtracker-1.0.2}/LICENSE.txt +0 -0
- {offtracker-1.0.1 → offtracker-1.0.2}/MANIFEST.in +0 -0
- {offtracker-1.0.1 → offtracker-1.0.2}/offtracker/X_analysis.py +0 -0
- {offtracker-1.0.1 → offtracker-1.0.2}/offtracker/X_general.py +0 -0
- {offtracker-1.0.1 → offtracker-1.0.2}/offtracker/__init__.py +0 -0
- {offtracker-1.0.1 → offtracker-1.0.2}/offtracker/mapping/1.1_bed2fr_v4.5.py +0 -0
- {offtracker-1.0.1 → offtracker-1.0.2}/offtracker/mapping/1.3_bdg_normalize_v4.0.py +0 -0
- {offtracker-1.0.1 → offtracker-1.0.2}/offtracker/mapping/bedGraphToBigWig +0 -0
- {offtracker-1.0.1 → offtracker-1.0.2}/offtracker/mapping/hg38.chrom.sizes +0 -0
- {offtracker-1.0.1 → offtracker-1.0.2}/offtracker/mapping/mm10.chrom.sizes +0 -0
- {offtracker-1.0.1 → offtracker-1.0.2}/offtracker/mapping/offtracker_blacklist_hg38.merged.bed +0 -0
- {offtracker-1.0.1 → offtracker-1.0.2}/offtracker/mapping/offtracker_blacklist_mm10.merged.bed +0 -0
- {offtracker-1.0.1 → offtracker-1.0.2}/offtracker.egg-info/SOURCES.txt +0 -0
- {offtracker-1.0.1 → offtracker-1.0.2}/offtracker.egg-info/dependency_links.txt +0 -0
- {offtracker-1.0.1 → offtracker-1.0.2}/offtracker.egg-info/requires.txt +0 -0
- {offtracker-1.0.1 → offtracker-1.0.2}/offtracker.egg-info/top_level.txt +0 -0
- {offtracker-1.0.1 → offtracker-1.0.2}/scripts/offtracker_analysis.py +0 -0
- {offtracker-1.0.1 → offtracker-1.0.2}/scripts/offtracker_candidates.py +0 -0
- {offtracker-1.0.1 → offtracker-1.0.2}/scripts/offtracker_config.py +0 -0
- {offtracker-1.0.1 → offtracker-1.0.2}/setup.cfg +0 -0
- {offtracker-1.0.1 → offtracker-1.0.2}/setup.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: offtracker
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.2
|
4
4
|
Summary: Track-seq data analysis
|
5
5
|
Home-page: https://github.com/Lan-lab/offtracker
|
6
6
|
Author: Runda Xu
|
@@ -79,8 +79,11 @@ offtracker_config.py -t 8 -g hg38 --blacklist hg38 \
|
|
79
79
|
-r /Your_Path_To_Reference/hg38_genome.fa \
|
80
80
|
-i /Your_Path_To_Reference/hg38_genome.chromap.index \
|
81
81
|
-f /Your_Path_To_Fastq \
|
82
|
-
-o /Your_Path_To_Output \
|
83
|
-
--subfolder 0
|
82
|
+
-o /Your_Path_To_Output \
|
83
|
+
--subfolder 0
|
84
|
+
|
85
|
+
# --subfolder: If different samples are in seperate folders, set this to 1
|
86
|
+
# -o: Default is outputting to /Your_Path_To_Fastq
|
84
87
|
|
85
88
|
# Run the snakemake program
|
86
89
|
cd /Your_Path_To_Fastq
|
@@ -103,13 +106,17 @@ Analyzing the off-target sites
|
|
103
106
|
```bash
|
104
107
|
# In this part, multiple samples in the same condition can be analyzed in a single run by pattern recogonization of sample names
|
105
108
|
|
106
|
-
offtracker_analysis.py -g hg38 --name "HEK4" \
|
107
|
-
--exp 'Cas9_HEK4.*293' \
|
108
|
-
--control 'control' \
|
109
|
+
offtracker_analysis.py -g hg38 --name "HEK4" \
|
110
|
+
--exp 'Cas9_HEK4.*293' \
|
111
|
+
--control 'control' \
|
109
112
|
--outname 'Cas9_HEK4_293' \
|
110
113
|
-f /Your_Path_To_Output \
|
111
114
|
--seqfolder /Your_Path_To_Candidates
|
112
115
|
|
116
|
+
# --name: the same as that in offtracker_candidates.py
|
117
|
+
# --exp/--control: add one or multiple patterns of file name in regex
|
118
|
+
|
119
|
+
|
113
120
|
# This step will generate Trackseq_result_{outname}.csv
|
114
121
|
# Intermediate files are saved in ./temp folder, which can be deleted
|
115
122
|
# Keeping the intermediate files can make the analysis faster if involving previously analyzed samples (e.g. using the same control samples for different analyses)
|
@@ -67,8 +67,11 @@ offtracker_config.py -t 8 -g hg38 --blacklist hg38 \
|
|
67
67
|
-r /Your_Path_To_Reference/hg38_genome.fa \
|
68
68
|
-i /Your_Path_To_Reference/hg38_genome.chromap.index \
|
69
69
|
-f /Your_Path_To_Fastq \
|
70
|
-
-o /Your_Path_To_Output \
|
71
|
-
--subfolder 0
|
70
|
+
-o /Your_Path_To_Output \
|
71
|
+
--subfolder 0
|
72
|
+
|
73
|
+
# --subfolder: If different samples are in seperate folders, set this to 1
|
74
|
+
# -o: Default is outputting to /Your_Path_To_Fastq
|
72
75
|
|
73
76
|
# Run the snakemake program
|
74
77
|
cd /Your_Path_To_Fastq
|
@@ -91,13 +94,17 @@ Analyzing the off-target sites
|
|
91
94
|
```bash
|
92
95
|
# In this part, multiple samples in the same condition can be analyzed in a single run by pattern recogonization of sample names
|
93
96
|
|
94
|
-
offtracker_analysis.py -g hg38 --name "HEK4" \
|
95
|
-
--exp 'Cas9_HEK4.*293' \
|
96
|
-
--control 'control' \
|
97
|
+
offtracker_analysis.py -g hg38 --name "HEK4" \
|
98
|
+
--exp 'Cas9_HEK4.*293' \
|
99
|
+
--control 'control' \
|
97
100
|
--outname 'Cas9_HEK4_293' \
|
98
101
|
-f /Your_Path_To_Output \
|
99
102
|
--seqfolder /Your_Path_To_Candidates
|
100
103
|
|
104
|
+
# --name: the same as that in offtracker_candidates.py
|
105
|
+
# --exp/--control: add one or multiple patterns of file name in regex
|
106
|
+
|
107
|
+
|
101
108
|
# This step will generate Trackseq_result_{outname}.csv
|
102
109
|
# Intermediate files are saved in ./temp folder, which can be deleted
|
103
110
|
# Keeping the intermediate files can make the analysis faster if involving previously analyzed samples (e.g. using the same control samples for different analyses)
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "1.0.2"
|
@@ -11,7 +11,6 @@ name2 = nametype + '.' + suffix
|
|
11
11
|
|
12
12
|
import os
|
13
13
|
|
14
|
-
#所有的输出列表
|
15
14
|
|
16
15
|
rule all:
|
17
16
|
input:
|
@@ -174,20 +173,3 @@ rule bdg2bw_rv:
|
|
174
173
|
shell:
|
175
174
|
"{params.dir_script}/bedGraphToBigWig {input} {params.gl} {output}"
|
176
175
|
|
177
|
-
#rule bwAdd:
|
178
|
-
# input:
|
179
|
-
# fw=os.path.join(output_dir,"{sample}.fw.scaled.bw"),
|
180
|
-
# rv=os.path.join(output_dir,"{sample}.rv.scaled.bw")
|
181
|
-
# threads:
|
182
|
-
# _threads
|
183
|
-
# output:
|
184
|
-
# os.path.join(output_dir,"{sample}." + BinSize + ".add.bdg")
|
185
|
-
# shell:
|
186
|
-
# """
|
187
|
-
# bigwigCompare --binSize {BinSize} -p {threads} --verbose -o {output} \
|
188
|
-
# --outFileFormat bedgraph \
|
189
|
-
# --bigwig1 {input.fw} \
|
190
|
-
# --bigwig2 {input.rv} \
|
191
|
-
# --operation add
|
192
|
-
# """
|
193
|
-
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: offtracker
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.2
|
4
4
|
Summary: Track-seq data analysis
|
5
5
|
Home-page: https://github.com/Lan-lab/offtracker
|
6
6
|
Author: Runda Xu
|
@@ -79,8 +79,11 @@ offtracker_config.py -t 8 -g hg38 --blacklist hg38 \
|
|
79
79
|
-r /Your_Path_To_Reference/hg38_genome.fa \
|
80
80
|
-i /Your_Path_To_Reference/hg38_genome.chromap.index \
|
81
81
|
-f /Your_Path_To_Fastq \
|
82
|
-
-o /Your_Path_To_Output \
|
83
|
-
--subfolder 0
|
82
|
+
-o /Your_Path_To_Output \
|
83
|
+
--subfolder 0
|
84
|
+
|
85
|
+
# --subfolder: If different samples are in seperate folders, set this to 1
|
86
|
+
# -o: Default is outputting to /Your_Path_To_Fastq
|
84
87
|
|
85
88
|
# Run the snakemake program
|
86
89
|
cd /Your_Path_To_Fastq
|
@@ -103,13 +106,17 @@ Analyzing the off-target sites
|
|
103
106
|
```bash
|
104
107
|
# In this part, multiple samples in the same condition can be analyzed in a single run by pattern recogonization of sample names
|
105
108
|
|
106
|
-
offtracker_analysis.py -g hg38 --name "HEK4" \
|
107
|
-
--exp 'Cas9_HEK4.*293' \
|
108
|
-
--control 'control' \
|
109
|
+
offtracker_analysis.py -g hg38 --name "HEK4" \
|
110
|
+
--exp 'Cas9_HEK4.*293' \
|
111
|
+
--control 'control' \
|
109
112
|
--outname 'Cas9_HEK4_293' \
|
110
113
|
-f /Your_Path_To_Output \
|
111
114
|
--seqfolder /Your_Path_To_Candidates
|
112
115
|
|
116
|
+
# --name: the same as that in offtracker_candidates.py
|
117
|
+
# --exp/--control: add one or multiple patterns of file name in regex
|
118
|
+
|
119
|
+
|
113
120
|
# This step will generate Trackseq_result_{outname}.csv
|
114
121
|
# Intermediate files are saved in ./temp folder, which can be deleted
|
115
122
|
# Keeping the intermediate files can make the analysis faster if involving previously analyzed samples (e.g. using the same control samples for different analyses)
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "1.0.1"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{offtracker-1.0.1 → offtracker-1.0.2}/offtracker/mapping/offtracker_blacklist_hg38.merged.bed
RENAMED
File without changes
|
{offtracker-1.0.1 → offtracker-1.0.2}/offtracker/mapping/offtracker_blacklist_mm10.merged.bed
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|