Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
chipseq_analysis
Manage
Activity
Members
Labels
Plan
Issues
19
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
3
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
BICF
Astrocyte
chipseq_analysis
Commits
61a87202
Commit
61a87202
authored
5 years ago
by
Venkat Malladi
Browse files
Options
Downloads
Patches
Plain Diff
update astrocyte to use true false.
parent
dd5b3b59
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!30
Resolve "Update Astrocyte documentation and errors"
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+5
-5
5 additions, 5 deletions
.gitlab-ci.yml
astrocyte_pkg.yml
+20
-2
20 additions, 2 deletions
astrocyte_pkg.yml
workflow/main.nf
+2
-8
2 additions, 8 deletions
workflow/main.nf
with
27 additions
and
15 deletions
.gitlab-ci.yml
+
5
−
5
View file @
61a87202
...
...
@@ -32,7 +32,7 @@ single_end_mouse:
only
:
-
master
script
:
-
nextflow run workflow/main.nf --astrocyte
'
true
'
-resume
-
nextflow run workflow/main.nf --astrocyte
true
-resume
-
pytest -m singleend
artifacts
:
expire_in
:
2 days
...
...
@@ -44,7 +44,7 @@ paired_end_human:
except
:
-
master
script
:
-
nextflow run workflow/main.nf --designFile "$CI_PROJECT_DIR/test_data/design_ENCSR729LGA_PE.txt" --genome 'GRCh38' --pairedEnd
true
--astrocyte
'
false
'
-resume
-
nextflow run workflow/main.nf --designFile "$CI_PROJECT_DIR/test_data/design_ENCSR729LGA_PE.txt" --genome 'GRCh38' --pairedEnd
true
--astrocyte
false
-resume
-
pytest -m pairedend
artifacts
:
expire_in
:
2 days
...
...
@@ -56,7 +56,7 @@ single_end_diff:
except
:
-
master
script
:
-
nextflow run workflow/main.nf --designFile "$CI_PROJECT_DIR/test_data/design_diff_SE.txt" --genome 'GRCm38' --astrocyte
'
false
'
-resume
-
nextflow run workflow/main.nf --designFile "$CI_PROJECT_DIR/test_data/design_diff_SE.txt" --genome 'GRCm38' --astrocyte
false
-resume
-
pytest -m singlediff
artifacts
:
expire_in
:
2 days
...
...
@@ -66,7 +66,7 @@ paired_end_diff:
-
master
stage
:
multiple
script
:
-
nextflow run workflow/main.nf --designFile "$CI_PROJECT_DIR/test_data/design_diff_PE.txt" --genome 'GRCh38' --pairedEnd
true
--astrocyte
'
false
'
-resume
-
nextflow run workflow/main.nf --designFile "$CI_PROJECT_DIR/test_data/design_diff_PE.txt" --genome 'GRCh38' --pairedEnd
true
--astrocyte
false
-resume
-
pytest -m paireddiff
artifacts
:
expire_in
:
2 days
...
...
@@ -76,7 +76,7 @@ single_end_skip:
only
:
-
master
script
:
-
nextflow run workflow/main.nf --designFile "$CI_PROJECT_DIR/test_data/design_diff_SE.txt" --genome 'GRCm38' --skipDiff
true
--skipMotif
true
--astrocyte
'
false
'
-resume
-
nextflow run workflow/main.nf --designFile "$CI_PROJECT_DIR/test_data/design_diff_SE.txt" --genome 'GRCm38' --skipDiff
true
--skipMotif
true
--astrocyte
false
-resume
-
pytest -m singleskip_true
artifacts
:
expire_in
:
2 days
This diff is collapsed.
Click to expand it.
astrocyte_pkg.yml
+
20
−
2
View file @
61a87202
...
...
@@ -101,8 +101,8 @@ workflow_parameters:
type
:
select
required
:
true
choices
:
-
[
'
true'
,
'
T
rue'
]
-
[
'
false'
,
'
F
alse'
]
-
[
'
true'
,
'
t
rue'
]
-
[
'
false'
,
'
f
alse'
]
description
:
|
In single-end sequencing, the sequencer reads a fragment from only one
end to the other, generating the sequence of base pairs. In paired-end
...
...
@@ -128,6 +128,24 @@ workflow_parameters:
description
:
|
Reference species and genome used for alignment and subsequent analysis.
-
id
:
skipDiff
type
:
select
required
:
true
choices
:
-
[
'
true'
,
'
true'
]
-
[
'
false'
,
'
false'
]
description
:
|
Run differential peak analysis
-
id
:
skipMotif
type
:
select
required
:
true
choices
:
-
[
'
true'
,
'
true'
]
-
[
'
false'
,
'
false'
]
description
:
|
Run motif calling
-
id
:
astrocyte
type
:
select
choices
:
...
...
This diff is collapsed.
Click to expand it.
workflow/main.nf
+
2
−
8
View file @
61a87202
...
...
@@ -5,14 +5,14 @@
// Define Input variables
params.reads = "$baseDir/../test_data/*.fastq.gz"
params.pairedEnd =
'
false
'
params.pairedEnd = false
params.designFile = "$baseDir/../test_data/design_ENCSR238SGC_SE.txt"
params.genome = 'GRCm38'
params.cutoffRatio = 1.2
params.outDir= "$baseDir/output"
params.extendReadsLen = 100
params.topPeakCount = 600
params.astrocyte =
'
false
'
params.astrocyte = false
params.skipDiff = false
params.skipMotif = false
params.references = "$baseDir/../docs/references.md"
...
...
@@ -70,12 +70,6 @@ skipMotif = params.skipMotif
references = params.references
multiqc = params.multiqc
if (params.pairedEnd == 'false'){
pairedEnd = false
} else {
pairedEnd = true
}
// Check design file for errors
process checkDesignFile {
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment