Mentions légales du service

Skip to content
Snippets Groups Projects
Commit ec0063eb authored by BOULLE Olivier's avatar BOULLE Olivier
Browse files

remove homopolymere deletion part, rename output files

parent 3e784374
No related branches found
No related tags found
No related merge requests found
...@@ -111,15 +111,15 @@ frag_length=$(get_container_param $container_path "frag_length") ...@@ -111,15 +111,15 @@ frag_length=$(get_container_param $container_path "frag_length")
assembly_type=$(get_container_param $container_path "assembly_type") assembly_type=$(get_container_param $container_path "assembly_type")
source_encoding_script="$project_dir"/source_encoding/source_encoding.py source_encoding_script="$project_dir"/source_encoding/source_encoding.py
source_path="$stored_document_path"/1_fragments.fasta source_path="$stored_document_path"/0_encoded_source.fasta
call_function python3 "$source_encoding_script" -i "$document_path" -o "$source_path" -l $frag_length -t "$assembly_type" -c "$container_path" --doc_index $doc_index call_function python3 "$source_encoding_script" -i "$document_path" -o "$source_path" -l $frag_length -t "$assembly_type" -c "$container_path" --doc_index $doc_index
#----Channel Encoding----# #----Channel Encoding----#
#TODO channel coding for whole sequence
channel_encoding_script="$project_dir"/channel_code/encode_from_file.jl channel_encoding_script="$project_dir"/channel_code/encode_from_file.jl
channel_path="$stored_document_path"/2_channel.fasta channel_path="$stored_document_path"/1_channel.fasta
add_doc_param "$container_path" $doc_index "channel_coding" $channel_coding add_doc_param "$container_path" $doc_index "channel_coding" $channel_coding
...@@ -131,16 +131,6 @@ else ...@@ -131,16 +131,6 @@ else
fi fi
#----Homopolymere Deletion----#
#h_deletion_script="$project_dir"/synthesis_modules/homoplymere_deletion/homopolymere_deletion.py
fragments_path="$stored_document_path"/3_final_fragments.fasta
echo "homopolymere deletion not implemented yet; skipping..."
call_function cp "$channel_path" "$fragments_path"
: 'call_function $h_deletion_script "$channel_path" "$fragments_path" #TODO
'
echo "Document $(basename $document_path) successfully added to container $(basename $container_path) !" echo "Document $(basename $document_path) successfully added to container $(basename $container_path) !"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment