Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion tools/concoct/.lint_skip

This file was deleted.

12 changes: 6 additions & 6 deletions tools/concoct/concoct.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@ concoct
<param name="total_percentage_pca" value="100"/>
<param name="seed" value="1"/>
<param name="iterations" value="500"/>
<param name="no_cov_normalization" value=""/>
<param name="no_cov_normalization" value="false"/>
</section>
<section name="output">
<param name="no_total_coverage" value=""/>
<param name="converge_out" value=""/>
<param name="no_total_coverage" value="false"/>
<param name="converge_out" value="false"/>
<param name="log" value="true"/>
</section>
<output name="process_log" ftype="txt" compare="contains">
Expand Down Expand Up @@ -113,11 +113,11 @@ concoct
<param name="total_percentage_pca" value="100"/>
<param name="seed" value="1"/>
<param name="iterations" value="500"/>
<param name="no_cov_normalization" value=""/>
<param name="no_cov_normalization" value="false"/>
</section>
<section name="output">
<param name="no_total_coverage" value=""/>
<param name="converge_out" value=""/>
<param name="no_total_coverage" value="false"/>
<param name="converge_out" value="false"/>
<param name="log" value="false"/>
</section>
<output name="output_pca_components" ftype="csv">
Expand Down
10 changes: 4 additions & 6 deletions tools/concoct/concoct_coverage_table.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,13 @@
mkdir 'mapping' &&
#if $mode.type == 'individual'
#set $identifier = re.sub('[^\s\w\-\\.]', '_', str($mode.bamfile))
ln -s '$mode.bamfile' 'mapping/${identifier}.sorted.bam' &&
samtools index 'mapping/${identifier}.sorted.bam' 'mapping/${identifier}.bam.bai' &&
mv 'mapping/${identifier}.sorted.bam' 'mapping/${identifier}.bam' &&
ln -s '$mode.bamfile' 'mapping/${identifier}.bam' &&
ln -s '$mode.bamfile.metadata.bam_index' 'mapping/${identifier}.bam.bai'
#else
#for $e in $mode.bamfiles
#set $identifier = re.sub('[^\s\w\-\\.]', '_', str($e.element_identifier))
ln -s '$e' 'mapping/${identifier}.sorted.bam' &&
samtools index 'mapping/${identifier}.sorted.bam' 'mapping/${identifier}.bam.bai' &&
mv 'mapping/${identifier}.sorted.bam' 'mapping/${identifier}.bam' &&
ln -s '$e' 'mapping/${identifier}.bam' &&
ln -s '$e.metadata.bam_index' 'mapping/${identifier}.bam.bai' &&
#end for
#end if
concoct_coverage_table.py
Expand Down
6 changes: 3 additions & 3 deletions tools/concoct/cut_up_fasta.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ cut_up_fasta.py
<param name="input_fasta" value="two_contigs.fa"/>
<param name="chunk_size" value="1000" />
<param name="overlap_size" value="0"/>
<param name="merge_last" value=""/>
<param name="merge_last" value="false"/>
<param name="bedfile" value="false"/>
<output name="output_fasta" ftype="fasta">
<assert_contents>
Expand All @@ -57,7 +57,7 @@ cut_up_fasta.py
<param name="input_fasta" value="two_contigs.fa"/>
<param name="chunk_size" value="1000" />
<param name="overlap_size" value="0"/>
<param name="merge_last" value="--merge_last"/>
<param name="merge_last" value="true"/>
<param name="bedfile" value="true"/>
<output name="output_bed" ftype="bed">
<assert_contents>
Expand All @@ -79,7 +79,7 @@ cut_up_fasta.py
<param name="input_fasta" value="composition.fa.gz" ftype="fasta.gz"/>
<param name="chunk_size" value="500" />
<param name="overlap_size" value="499"/>
<param name="merge_last" value=""/>
<param name="merge_last" value="false"/>
<param name="bedfile" value="false"/>
<output name="output_fasta" ftype="fasta">
<assert_contents>
Expand Down
Loading