File tree Expand file tree Collapse file tree 6 files changed +14
-7
lines changed Expand file tree Collapse file tree 6 files changed +14
-7
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,8 @@ jobs:
100
100
' CONDA_PREPROCESSING_ENV' ,
101
101
' CONDA_NONCODING_RNASEQ_ENV' ,
102
102
' CONDA_SAMBAMBA_ENV' ,
103
- ' CONDA_pysam_ENV'
103
+ ' CONDA_pysam_ENV' ,
104
+ ' CONDA_FQLINT_ENV'
104
105
]
105
106
runs-on : ubuntu-latest
106
107
steps :
Original file line number Diff line number Diff line change 31
31
' CONDA_PREPROCESSING_ENV' ,
32
32
' CONDA_NONCODING_RNASEQ_ENV' ,
33
33
' CONDA_SAMBAMBA_ENV' ,
34
- ' CONDA_pysam_ENV'
34
+ ' CONDA_pysam_ENV' ,
35
+ ' CONDA_FQLINT_ENV'
35
36
]
36
37
runs-on : macos-latest
37
38
steps :
Original file line number Diff line number Diff line change @@ -42,7 +42,9 @@ def set_env_yamls():
42
42
'CONDA_NONCODING_RNASEQ_ENV' : 'envs/noncoding.yaml' ,
43
43
'CONDA_SAMBAMBA_ENV' : 'envs/sambamba.yaml' ,
44
44
'CONDA_pysam_ENV' : 'envs/pysam.yaml' ,
45
- 'CONDA_SEACR_ENV' : 'envs/chip_seacr.yaml' }
45
+ 'CONDA_SEACR_ENV' : 'envs/chip_seacr.yaml' ,
46
+ 'CONDA_FQLINT_ENV' : 'envs/fqlint.yaml'
47
+ }
46
48
47
49
48
50
def merge_dicts (x , y ):
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ if pairedEnd or pipeline=="scrnaseq":
5
5
r2 = indir + "/{sample}" + reads [1 ]+ ext
6
6
output :
7
7
temp ("originalFASTQ/{sample}.valid" )
8
- conda : CONDA_SHARED_ENV
8
+ conda : CONDA_FQLINT_ENV
9
9
shell :"""
10
10
fq lint {input.r1} {input.r2}
11
11
touch {output}
16
16
r1 = indir + "/{sample}" + reads [0 ]+ ext
17
17
output :
18
18
temp ("originalFASTQ/{sample}.valid" )
19
- conda : CONDA_SHARED_ENV
19
+ conda : CONDA_FQLINT_ENV
20
20
shell :"""
21
21
fq lint {input.r1}
22
22
touch {output}
Original file line number Diff line number Diff line change
1
+ channels :
2
+ - bioconda
3
+ dependencies :
4
+ - fq = 0.12.0
Original file line number Diff line number Diff line change 1
1
name : snakepipes_shared_environment_2.0
2
2
channels :
3
- - bioconda
4
3
- conda-forge
4
+ - bioconda
5
5
dependencies :
6
6
- python = 3.10.13
7
7
- deeptools = 3.5.4
@@ -15,6 +15,5 @@ dependencies:
15
15
- multiqc = 1.23
16
16
- fastp = 0.23.4
17
17
- umi_tools = 1.1.4
18
- - fq = 0.12.0
19
18
- pybigwig = 0.3.22
20
19
You can’t perform that action at this time.
0 commit comments