Skip to content

Commit 0571ece

Browse files
committed
Fix linting issues
1 parent 9e370cc commit 0571ece

File tree

9 files changed

+50
-26
lines changed

9 files changed

+50
-26
lines changed

data_managers/data_manager_pangolin_data/data_manager/pangolin_data_dm.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,6 @@
101101
</conditional>
102102
<conditional name="pangolin_constellations">
103103
<param name="enable" value="no" />
104-
<param name="compatibility_file" ftype="csv" value="data_compatibility.csv" />
105-
<param name="versions" value="0.0.40" />
106104
</conditional>
107105
<conditional name="pangolin_assignment">
108106
<param name="enable" value="no" />

tools/fasta_stats/.shed.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
categories:
22
- Sequence Analysis
3-
description: Display summary statistics for a fasta file.
3+
description: Display summary statistics for a FASTA file.
44
homepage_url: https://github.com/galaxyproject/tools-iuc/tree/main/tools/fasta_stats/
5+
long_description: |
6+
This tool generates statistics for a FASTA file: a general summary and an
7+
optional gap stats file.
58
name: fasta_stats
69
owner: iuc
710
remote_repository_url: https://github.com/galaxyproject/tools-iuc/tree/main/tools/fasta_stats

tools/genebed_maf_to_fasta/.shed.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ name: genebed_maf_to_fasta
22
owner: iuc
33
description: Stitch gene blocks given a set of coding exon intervals
44
homepage_url: https://github.com/galaxyproject/tools-iuc/tree/main/tools/genebed_maf_to_fasta/
5+
long_description: |
6+
This tool takes a list of coding exons (in the Gene BED format) and a MAF
7+
alignment file, finds all MAF blocks that overlap the coding regions, sorts
8+
MAF blocks by alignment score, stitches blocks together resolving overlaps
9+
based on alignment score, and finally outputs the stitched alignments in FASTA
10+
format.
511
remote_repository_url: https://github.com/galaxyproject/tools-iuc/tree/main/tools/genebed_maf_to_fasta
612
categories:
713
- Genomic Interval Operations

tools/genebed_maf_to_fasta/genebed_maf_to_fasta.xml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,16 +44,20 @@
4444
<tests>
4545
<test>
4646
<param name="input1" dbkey="hg38" value="maf_to_fasta-in1.bed"/>
47-
<param name="maf_source" value="cached"/>
48-
<param name="species" value="hg38,eulFla1,mm10"/>
47+
<conditional name="maf_source_type">
48+
<param name="maf_source" value="cached"/>
49+
<param name="species" value="hg38,eulFla1,mm10"/>
50+
</conditional>
4951
<param name="overwrite_with_gaps" value="True"/>
5052
<output name="out_file1" file="maf_to_fasta-out1.fasta" />
5153
</test>
5254
<test>
5355
<param name="input1" dbkey="hg38" value="maf_to_fasta-in2.bed"/>
54-
<param name="maf_source" value="user"/>
55-
<param name="maf_file" dbkey="hg38" value="maf_to_fasta-in2.maf"/>
56-
<param name="species" value="hg38,eulFla1,mm10"/>
56+
<conditional name="maf_source_type">
57+
<param name="maf_source" value="user"/>
58+
<param name="maf_file" dbkey="hg38" value="maf_to_fasta-in2.maf"/>
59+
<param name="species" value="hg38,eulFla1,mm10"/>
60+
</conditional>
5761
<param name="overwrite_with_gaps" value="True"/>
5862
<output name="out_file1" file="maf_to_fasta-out2.fasta" />
5963
</test>

tools/interval2maf/.shed.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ name: interval2maf
22
owner: iuc
33
description: Extract MAF blocks given a set of intervals
44
homepage_url: https://github.com/galaxyproject/tools-iuc/tree/main/tools/interval2maf/
5+
long_description: |
6+
This tool takes genomic coordinates, superimposes them on multiple alignments
7+
(in MAF format), and excises alignment blocks corresponding to each set of
8+
coordinates.
59
remote_repository_url: https://github.com/galaxyproject/tools-iuc/tree/main/tools/interval2maf
610
categories:
711
- Genomic Interval Operations

tools/interval2maf/interval2maf.xml

Lines changed: 24 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -81,26 +81,38 @@
8181
<tests>
8282
<test>
8383
<param name="input1" dbkey="hg38" value="interval2maf-in.bed" />
84-
<param name="maf_source" value="user" />
85-
<param name="mafFile" dbkey="hg38" value="interval2maf-in1.maf" />
86-
<param name="species" value="hg38,mm10,eulFla1" />
87-
<param name="split_blocks_by_species" value="dont_split_blocks_by_species"/>
84+
<conditional name="maf_source_type">
85+
<param name="maf_source" value="user" />
86+
<param name="mafFile" dbkey="hg38" value="interval2maf-in1.maf" />
87+
<param name="species" value="hg38,mm10,eulFla1" />
88+
</conditional>
89+
<conditional name="split_blocks_by_species_selector">
90+
<param name="split_blocks_by_species" value="dont_split_blocks_by_species"/>
91+
</conditional>
8892
<output name="out_file1" file="interval2maf-out1.maf" />
8993
</test>
9094
<test>
9195
<param name="input1" dbkey="hg38" value="interval2maf-in.bed"/>
92-
<param name="maf_source" value="cached"/>
93-
<param name="mafType" value="TEST"/>
94-
<param name="species" value="hg38,mm10,eulFla1" />
95-
<param name="split_blocks_by_species" value="dont_split_blocks_by_species"/>
96+
<conditional name="maf_source_type">
97+
<param name="maf_source" value="cached"/>
98+
<param name="mafType" value="TEST"/>
99+
<param name="species" value="hg38,mm10,eulFla1" />
100+
</conditional>
101+
<conditional name="split_blocks_by_species_selector">
102+
<param name="split_blocks_by_species" value="dont_split_blocks_by_species"/>
103+
</conditional>
96104
<output name="out_file1" file="interval2maf-out2.maf" />
97105
</test>
98106
<test>
99107
<param name="input1" dbkey="hg38" value="interval2maf-in.bed"/>
100-
<param name="maf_source" value="cached"/>
101-
<param name="mafType" value="TEST"/>
102-
<param name="species" value="hg38,mm10,eulFla1" />
103-
<param name="split_blocks_by_species" value="dont_split_blocks_by_species"/>
108+
<conditional name="maf_source_type">
109+
<param name="maf_source" value="cached"/>
110+
<param name="mafType" value="TEST"/>
111+
<param name="species" value="hg38,mm10,eulFla1" />
112+
</conditional>
113+
<conditional name="split_blocks_by_species_selector">
114+
<param name="split_blocks_by_species" value="dont_split_blocks_by_species"/>
115+
</conditional>
104116
<output name="out_file1" file="interval2maf-out3.maf" />
105117
</test>
106118
</tests>

tools/parse_mito_blast/.shed.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,14 @@ name: parse_mito_blast
22
owner: iuc
33
description: Filtering blast out from querying assembly against mitochondrial database.
44
homepage_url: https://github.com/VGP/vgp-assembly/tree/master/galaxy_tools/parse_mito_blast
5-
long description: |
5+
long_description: |
66
This tool is intended for use on the tabular (format 6) output generated by blastn. Depending on filtering choices, blast will output \
77
all the alignments it generates. Often there are multiple overlapping alignments for a unique query sequence-accession number pair. This tool \
88
collects all alignments between a given pair and calculates the total coverage between the query and accession number, taking into /
99
account overlapping alignments. Therefore a user can figure out how much of their query sequence actually identifies with a subject /
1010
sequence (acc #). This tool was designed for use in the VGP decontamination pipeline - in particular for deciding whether a scaffold /
1111
(sequence) is of mitochondrial origin. Parse_mito_blast generates a synthesized, tabular report of coverage for scaffolds with >95% /
1212
identity to a mitochondrial subject sequence.
13-
1413
remote_repository_url: https://github.com/galaxyproject/tools-iuc/tree/main/tools/parse_mito_blast
1514
categories:
1615
- Sequence Analysis

tools/plasmidfinder/.shed.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
description: Plasmid identification in bacteria
12
name: "plasmidfinder"
23
owner: "iuc"
34
long_description: |

tools/plasmidfinder/plasmidfinder.xml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@
7878
<test expect_num_outputs="6">
7979
<section name="input">
8080
<param name="input_file" value="contigs.fasta"/>
81-
<param name="input_type" value="genome"/>
8281
<param name="database_name" value="plasmidfinder_9002e7282dd0_2022-12-20"/>
8382
</section>
8483
<section name="output_files">
@@ -95,7 +94,6 @@
9594
<test expect_num_outputs="4">
9695
<section name="input">
9796
<param name="input_file" value="data.fastq.gz"/>
98-
<param name="input_type" value="raw"/>
9997
<param name="database_name" value="plasmidfinder_9002e7282dd0_2022-12-20"/>
10098
</section>
10199
<section name="output_files">
@@ -110,7 +108,6 @@
110108
<test expect_num_outputs="3">
111109
<section name="input">
112110
<param name="input_file" value="contigs.fasta"/>
113-
<param name="input_type" value="genome"/>
114111
<param name="database_name" value="plasmidfinder_9002e7282dd0_2022-12-20"/>
115112
</section>
116113
<section name="options">
@@ -128,7 +125,7 @@
128125
<help><![CDATA[
129126
**What it does**
130127
PlasmidFinder characterize plasmid sequences into whole genome sequencing.
131-
It is based on the [plasmidfinder database](https://bitbucket.org/genomicepidemiology/plasmidfinder_db/) with hundreds sequences.
128+
It is based on the [plasmidfinder database](https://bitbucket.org/genomicepidemiology/plasmidfinder_db) with hundreds sequences.
132129
**Input**
133130
PlasmidFinder takes raw data (with a k-mer analysisi) as reads or genome assembly (blastn analysis) to search plasmids.
134131
**Output**

0 commit comments

Comments
 (0)