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
b88cbb2e
There was a problem fetching the pipeline stages.
Commit
b88cbb2e
authored
6 years ago
by
Venkat Malladi
Browse files
Options
Downloads
Patches
Plain Diff
Update versions.
parent
72ce1955
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!23
Resolve "Output software versions and methods and references"
Pipeline
#3241
failed with stages
in 2 minutes and 2 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
docs/references.md
+1
-1
1 addition, 1 deletion
docs/references.md
workflow/main.nf
+24
-12
24 additions, 12 deletions
workflow/main.nf
workflow/scripts/generate_versions.py
+0
-6
0 additions, 6 deletions
workflow/scripts/generate_versions.py
with
25 additions
and
19 deletions
docs/references.md
+
1
−
1
View file @
b88cbb2e
...
...
@@ -4,7 +4,7 @@
*
Anaconda (Anaconda Software Distribution,
[
https://anaconda.com
](
https://anaconda.com
)
)
2.
**trimgalore**
:
*
trimgalore
/0.4.1
[
https://github.com/FelixKrueger/TrimGalore
](
https://github.com/FelixKrueger/TrimGalore
)
*
trimgalore
[
https://github.com/FelixKrueger/TrimGalore
](
https://github.com/FelixKrueger/TrimGalore
)
3.
**cutadapt**
:
*
Marcel, M. 2011. Cutadapt removes adapter sequences from high-throughput sequencing reads. EMBnet.journal 17(1):10-12. doi:
[
10.14806/ej.17.1.200
](
http://dx.doi.org/10.14806/ej.17.1.200
)
...
...
This diff is collapsed.
Click to expand it.
workflow/main.nf
+
24
−
12
View file @
b88cbb2e
...
...
@@ -489,17 +489,17 @@ process softwareReport {
input:
trimReadsVersions.collect()
alignReadsVersions.collect()
filterReadsVersions.collect()
convertReadsVersions.collect()
crossReadsVersions.collect()
callPeaksMACSVersions.collect()
consensusPeaksVersions.collect()
peakAnnotationVersions.collect()
motifSearchVersions.collect()
diffPeaksVersions.collect()
experimentQCVersions.collect()
file trimReads_vf from
trimReadsVersions.collect()
file alignReads_vf from
alignReadsVersions.collect()
file filterReads_vf from
filterReadsVersions.collect()
file convertReads_vf from
convertReadsVersions.collect()
file crossReads_vf from
crossReadsVersions.collect()
file callPeaksMACS_vf from
callPeaksMACSVersions.collect()
file consensusPeaks_vf from
consensusPeaksVersions.collect()
file peakAnnotation_vf from
peakAnnotationVersions.collect()
file motifSearch_vf from
motifSearchVersions.collect()
file diffPeaks_vf from
diffPeaksVersions.collect()
file experimentQC_vf from
experimentQCVersions.collect()
output:
...
...
@@ -509,7 +509,19 @@ process softwareReport {
script:
"""
echo $workflow.nextflow.version > version_nextflow.txt
python3 $baseDir/scripts/generate_versions.py -f *.txt -o software_versions
python3 $baseDir/scripts/generate_references.py -r $references -o software_references
python3 $baseDir/scripts/generate_versions.py -f $trimReads_vf \
$alignReads_vf \
$filterReads_vf \
$convertReads_vf \
$crossReads_vf \
$callPeaksMACS_vf \
$consensusPeaks_vf \
$motifSearch_vf \
$diffPeaks_vf \
$experimentQC_vf \
version_nextflow.txt \
-o software_versions
"""
}
This diff is collapsed.
Click to expand it.
workflow/scripts/generate_versions.py
+
0
−
6
View file @
b88cbb2e
...
...
@@ -68,12 +68,6 @@ def check_files(files):
software_files
=
np
.
array
(
list
(
SOFTWARE_REGEX
.
values
()))[:,
0
]
missing_files
=
set
(
software_files
)
-
set
(
files
)
if
len
(
missing_files
)
>
0
:
logger
.
error
(
'
Missing version files: %s
'
,
list
(
missing_files
))
raise
Exception
(
"
Missing version files: %s
"
%
list
(
missing_files
))
extra_files
=
set
(
files
)
-
set
(
software_files
)
if
len
(
extra_files
)
>
0
:
...
...
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