Skip to content

Commit

Permalink
replaced copyright mentions
Browse files Browse the repository at this point in the history
  • Loading branch information
rioualen committed Jul 3, 2017
1 parent 9da6f30 commit ed49799
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 16 deletions.
3 changes: 1 addition & 2 deletions scripts/snakefiles/rules/bbduk.rules
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,7 @@ rule bbduk:
config["bbduk"]["qual_threshold"]
config["metadata"]["strands"]

Authors:
Claire Rioualen, Lucie Khamvongsa
Contributors: Claire Rioualen
"""
input: reads = bbduk_inputs
output:
Expand Down
4 changes: 2 additions & 2 deletions scripts/snakefiles/rules/bedgraph_to_bigwig.rules
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ if not "qsub" in config.keys():
sys.exit("The parameter qsub must be defined in the config file")

rule bedgraph_to_bigwig:
"""Convert bedGraph to bigWig format.
"""Convert bedgraph to bigWig format.

Required parameters:
config["qsub"]

Copyright: Claire Rioualen
Contributors: Claire Rioualen
"""
input: chromizes="", bedgraph="{coverage}.bedgraph"
output: "{coverage}.bw"
Expand Down
2 changes: 1 addition & 1 deletion scripts/snakefiles/rules/bedgraph_to_tdf.rules
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ rule bedgraph_to_tdf:
config["dir"]["genome"]
config["genome"]["fasta_file"]

Copyright: Claire Rioualen
Contributors: Claire Rioualen
"""
input: "{coverage}.bedgraph"
output: "{coverage}.tdf"
Expand Down
2 changes: 1 addition & 1 deletion scripts/snakefiles/rules/bedtools_closest.rules
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ rule bedtools_closest:
config["dir"]["genome"]
config["genome"]["gff3_file"]

Copyright Claire Rioualen
Contributors: Claire Rioualen
"""
input: bed = "{regions}.bed", gff3 = gff3_file
output: "{regions}_closest_annot.bed"
Expand Down
2 changes: 1 addition & 1 deletion scripts/snakefiles/rules/bedtools_intersect.rules
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ rule bedtools_intersect:
config["dir"]["genome"]
config["genome"]["gff3_file"]

Copyright Claire Rioualen
Contributors: Claire Rioualen
"""
input: bed = "{regions}.bed", gff3 = gff3_file
output: "{regions}_intersect_annot.bed"
Expand Down
2 changes: 1 addition & 1 deletion scripts/snakefiles/rules/bedtools_window.rules
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ rule bedtools_window:
Opional parameters:
config["bedtools"]["window"]

Copyright Claire Rioualen
Contributors: Claire Rioualen
"""
input: bed = "{regions}.bed", gff3 = gff3_file
output: "{regions}_window_annot.bed"
Expand Down
2 changes: 1 addition & 1 deletion scripts/snakefiles/rules/blast_formatdb.rules
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ rule blast_formatdb:

## type (formatdb option -p): sequence type: peptidic (-pT) or nucleic (-pF)

Copyright Jacques van Helden
Contributors: Jacques van Helden
"""
input: fasta_seq="{ref_db}.fa"
output: "{ref_db}_blastdb_p{type}.{extensions,(phr|psq|psi|psd|pin)}"
Expand Down
2 changes: 1 addition & 1 deletion scripts/snakefiles/rules/blastall.rules
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ rule blastall:
config["blastall"]["expect"]
config["blastall"]["view"]

Copyright Jacques van Helden
Contributors: Jacques van Helden
"""
input: query="{query}.fa", db_index=config["blastall"]["db"] + ".psi"
output: hits="{query}_{blast_program}_hits.tsv"
Expand Down
4 changes: 2 additions & 2 deletions scripts/snakefiles/rules/bowtie.rules
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def bowtie_inputs(wildcards):

# Rule
rule bowtie:
"""Read mapping for single end data using bowtie.
"""Read mapping using bowtie.
Requires the indexing to have previously been done (using the
rule bowtie_index).

Expand All @@ -64,7 +64,7 @@ rule bowtie:
config["bowtie"]["max_mismatches"]
config["bowtie"]["threads"]

Copyright Claire Rioualen, Jacques van Helden, Lucie Khamvongsa
Contributors: Claire Rioualen, Jacques van Helden, Lucie Khamvongsa
"""
input:
reads = bowtie_inputs,
Expand Down
4 changes: 2 additions & 2 deletions scripts/snakefiles/rules/bowtie2.rules
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def bowtie2_inputs(wildcards):

# Rule
rule bowtie2:
"""Read mapping for single end data using Bowtie2.
"""Read mapping using Bowtie2.
Requires the indexing to have previously been done (using the
rule bowtie2_index).

Expand All @@ -64,7 +64,7 @@ rule bowtie2:
config["bowtie2"]["threads"]
config["bowtie2"]["max_mismatches"]

Copyright Claire Rioualen
Contributors: Claire Rioualen
"""
input:
reads = bowtie2_inputs,
Expand Down
2 changes: 1 addition & 1 deletion scripts/snakefiles/rules/bowtie2_index.rules
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ rule bowtie2_index:

Optional parameters:

Copyright Claire Rioualen
Contributors: Claire Rioualen
"""
input: os.path.join(config["dir"]["genome"], config["genome"]["fasta_file"])
output: os.path.join(bowtie2_dir, config["genome"]["fasta_file"])
Expand Down
2 changes: 1 addition & 1 deletion scripts/snakefiles/rules/bowtie_index.rules
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ rule bowtie_index:

Optional parameters:

Copyright Jacques van Helden, Lucie Khamvongsa, Claire Rioualen
Contributors: Jacques van Helden, Lucie Khamvongsa, Claire Rioualen
"""
input: os.path.join(config["dir"]["genome"], config["genome"]["fasta_file"])
output: os.path.join(bowtie_dir, config["genome"]["fasta_file"])
Expand Down

0 comments on commit ed49799

Please sign in to comment.