Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Z
ZARP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
zavolan_group
pipelines
ZARP
Commits
443c7950
Commit
443c7950
authored
4 years ago
by
Alex Kanitz
Browse files
Options
Downloads
Plain Diff
Merge branch 'gtf2bed_update' into 'dev'
Gtf2bed update See merge request
!65
parents
4dd1ad78
b62f3bf1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!76
Bump version to v0.2.0
,
!65
Gtf2bed update
Pipeline
#10989
passed
4 years ago
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+2
-2
2 additions, 2 deletions
.gitlab-ci.yml
Snakefile
+9
-5
9 additions, 5 deletions
Snakefile
with
11 additions
and
7 deletions
.gitlab-ci.yml
+
2
−
2
View file @
443c7950
...
...
@@ -12,8 +12,8 @@ test:
# add code quality tests here
# add unit tests here
# add script tests here
-
bash tests/test_scripts_labkey_to_snakemake_table/test.sh
-
bash tests/test_scripts_labkey_to_snakemake_api/test.sh
#
- bash tests/test_scripts_labkey_to_snakemake_table/test.sh
#
- bash tests/test_scripts_labkey_to_snakemake_api/test.sh
-
bash tests/test_alfa/test.sh
# add integration tests here
-
bash tests/test_create_dag_image/test.sh
...
...
This diff is collapsed.
Click to expand it.
Snakefile
+
9
−
5
View file @
443c7950
...
...
@@ -394,20 +394,24 @@ rule extract_transcripts_as_bed12:
"full_transcripts_protein_coding.bed")
singularity:
"docker://zavolab/gtf
_transcript_type_to_bed12:0.1.0-slim
"
"docker://zavolab/
z
gtf
:0.1
"
threads: 1
log:
stdout = os.path.join(
config['log_dir'],
"extract_transcripts_as_bed12.stdout.log"),
stderr = os.path.join(
config['log_dir'],
"extract_transcripts_as_bed12.stderr.log")
shell:
"(gtf_transcript_type_to_bed12.pl \
--anno={input.gtf} \
--type=protein_coding > {output.bed12}); \
2> {log.stderr}"
"(gtf2bed12 \
--gtf {input.gtf} \
--transcript_type protein_coding \
--bed12 {output.bed12}); \
1> {log.stdout} 2> {log.stderr}"
rule index_genomic_alignment_samtools:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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