Skip to content

Commit

Permalink
Merge pull request #14 from pangenome/issue13
Browse files Browse the repository at this point in the history
this fixes #13
  • Loading branch information
subwaystation authored Mar 16, 2021
2 parents cb9360c + 1cf438e commit 1ad4be0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pgge
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ if [[ "$input_graph_names" == false ]];
then
(echo sample.name cons.jump aln.id qsc uniq multi nonaln; ls "$output_dir" | grep gaf | grep pgge$ | while read f; \
do
echo "$(echo "$output_dir"/"$f" | cut -f 2 -d .)" "$(echo "$output_dir"/"$f" | cut -f 2 -d @ | cut -f 1 -d.)" "$(cat "$output_dir"/"$f")"; \
echo "$(echo "$f" | cut -f 2 -d .)" "$(echo "$f" | cut -f 2 -d @ | cut -f 1 -d.)" "$(cat "$output_dir"/"$f")"; \
done) | tr ' ' '\t' > "$prefix_pgge".tsv
"$timer" -f "$fmt" Rscript \
"$beehave_R" "$prefix_pgge".tsv \
Expand All @@ -398,7 +398,7 @@ then
else
(echo sample.name cons.jump aln.id qsc uniq multi nonaln; ls "$output_dir" | grep gaf | grep pgge$ | while read f; \
do
echo "$(echo "$output_dir"/"$f" | cut -f 2 -d .)" "$(basename $(echo "$output_dir"/"$f"))" "$(cat "$output_dir"/"$f")"; \
echo "$(echo "$f" | cut -f 2 -d .)" "$(basename $(echo "$output_dir"/"$f"))" "$(cat "$output_dir"/"$f")"; \
done) | tr ' ' '\t' > "$prefix_pgge".tsv
"$timer" -f "$fmt" Rscript \
"$beehave_R" "$prefix_pgge".tsv \
Expand Down

0 comments on commit 1ad4be0

Please sign in to comment.