Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
aevol-eukaryotes
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LUISELLI Juliette
aevol-eukaryotes
Commits
94e11dbe
Commit
94e11dbe
authored
1 year ago
by
David Parsons
Browse files
Options
Downloads
Patches
Plain Diff
update aevol_post_extract help
fixes #23
parent
c358c764
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/post_treatments/aevol_post_extract.cpp
+26
-24
26 additions, 24 deletions
src/post_treatments/aevol_post_extract.cpp
with
26 additions
and
24 deletions
src/post_treatments/aevol_post_extract.cpp
+
26
−
24
View file @
94e11dbe
...
...
@@ -332,46 +332,48 @@ void print_help(char* prog_path) {
printf
(
"
\n
\
This program extracts some data about the individuals a
nd write
\n
\
them into text files easy to parse with e.g. matlab.
\n
\
This program extracts some data about the individuals a
t a given generation
\n
\
and write
them into text files
that are
easy to parse with e.g. matlab.
\n
\
\n
\
Two kinds of data can be extracted
:
\n
\
Two kinds of data can be extracted:
\n
\
\n
\
* data about the phenotype (option -
t) : write information about
\n
\
the proteins in a text file.
A space delimits two proteins, a
\n
\
new line delimits two individuals.
For each protein, the output
\n
\
is
\"
m_h_w_c_r_s_f_l_z_g
\"
where
:
\n
\
* m, h, w and c are the mean, height, width and concentration of the protein
\n
\
* r is an identifier of the rna it belongs (useful to
\n
\
know if several proteins are on the same rna)
\n
\
* s indicates the strand (LEADING/LAGGING)
\n
\
* f and l are the first and last translated base
\n
\
* z indicates the feature (at the center of the protein)
\n
\
* data about the phenotype (option -
T or --triangles):
\n
\
write information about
the proteins in a text file.
\n
\
A space delimits two proteins, a
new line delimits two individuals.
\n
\
For each protein, the output
is
\"
m_h_w_c_r_s_f_l_z_g
\"
where:
\n
\
* m, h, w and c are the mean, height, width and concentration of the protein
\n
\
* r is an identifier of the rna it belongs (useful to
\n
\
know if several proteins are on the same rna)
\n
\
* s indicates the strand (LEADING/LAGGING)
\n
\
* f and l are the first and last translated base
s
\n
\
* z indicates the feature (at the center of the protein)
\n
\
\n
\
* sequences of the individuals (option -
s)
: write the sequences
\n
\
* sequences of the individuals (option -
S or --sequence)
: write the sequences
\n
\
in a text file. A new line delimits two individuals. In case
\n
\
there are several
GU
, they are separated by whitespaces.
\n
\
there are several
genetic units (GUs)
, they are separated by whitespaces.
\n
\
\n
\
With option -b, only the best individual is treated.
\n
\
By default, only the best individual is treated. You may use one of the
\n
\
following options to modify this behaviour:
* With option -a, all the individuals in the population are treated.
\n
\
* With option -i, only the individual with the provided ID is treated.
\n
\
* With options -x and -y, only the individual at the provided position on
\n
\
the grid is treated.
\n
\
\n
\
The input can be either a generation number, in which case we
\n
\
will attempt to load a full backup tree, or a population file,
\n
\
in which case features of the proteins won't be outputed as we
\n
\
need to know the environment to infer them.
\n
\
Use option -t (or --timestep) to specify timestep of the individual(s) of
\n
\
interest. A full backup tree must exist for the provided timestep.
\n
\
\n
\
Examples :
\n
\
\n
\
For generation 20000, write info
s
about the phenotypes of all the
\n
\
For generation 20000, write info about the phenotypes of all the
\n
\
individuals in phe_020000 and the sequences of all the
\n
\
individuals in seq_020000 :
\n
\
\n
\
extract -
r 20000 -t
phe_020000 -
s
seq_020000
\n
\
extract -
-timestep 20000 --all --triangles
phe_020000 -
-sequence
seq_020000
\n
\
\n
\
For generation 20000, write the best individual's sequence in
\n
\
seq_020000_best :
\n
\
\n
\
extract -b -r 20000 -s seq_020000_best
\n
\
or extract -b -p populations/pop_020000.ae -s seq_020000_best
\n
"
);
extract --timestep 20000 --sequence seq_020000_best
\n
"
);
}
void
interpret_cmd_line_options
(
int
argc
,
char
*
argv
[])
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment